workflow-wasm 0.19.0

WASM utilities for in-browser use (timers, callbacks, etc.)
Documentation
1
2
3
4
//! [`Result`] type used by the `workflow_wasm` crate.

/// Convenience `Result` alias whose error type is the crate's [`crate::error::Error`].
pub type Result<T> = std::result::Result<T, crate::error::Error>;