workflow_dom/result.rs
1//! Result type used by the [`workflow_dom`](super) module
2use wasm_bindgen::JsValue;
3
4/// Result type used by the [`workflow_dom`](super) module
5// pub type Result<T> = std::result::Result<T, JsValue>;
6pub type JsResult<T> = std::result::Result<T, JsValue>;
7pub type Result<T> = std::result::Result<T, crate::error::Error>;