1//! [`Result`] type used by the `workflow_wasm` crate. 2 3/// Convenience `Result` alias whose error type is the crate's [`crate::error::Error`]. 4pub type Result<T> = std::result::Result<T, crate::error::Error>;