bitwarden_error/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub mod flat_error;
4
5#[cfg(feature = "wasm")]
6pub mod wasm;
7
8/// Re-export the `js_sys` crate since the proc macro depends on it.
9#[cfg(feature = "wasm")]
10#[doc(hidden)]
11pub use ::js_sys;
12/// Re-export the `tsify_next` crate since the proc macro depends on it.
13#[cfg(feature = "wasm")]
14#[doc(hidden)]
15pub use ::tsify_next;
16/// Re-export the `wasm_bindgen` crate since the proc macro depends on it.
17#[cfg(feature = "wasm")]
18#[doc(hidden)]
19pub use ::wasm_bindgen;
20pub use bitwarden_error_macro::bitwarden_error;