pub type JsResult<T> = Result<T, JsValue>;
Result type used by the workflow_dom module
workflow_dom
pub enum JsResult<T> { Ok(T), Err(JsValue), }
Contains the success value
Contains the error value