workflow-node 0.19.0

Utilities and curated re-exports for Node.js APIs.
Documentation
1
2
3
4
5
//! [`Result`] enum encapsulating the node [`Error`](crate::error::Error) enum

/// Result type used throughout this crate, with the error fixed to the node
/// [`Error`](crate::error::Error) enum.
pub type Result<T> = std::result::Result<T, crate::error::Error>;