bitwarden_error/
lib.rs

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