1#[cfg(not(target_family = "wasm"))]
4pub mod dart;
5pub mod err;
6mod shared;
7#[cfg(target_family = "wasm")]
8mod wasm;
9
10pub use shared::*;
11
12#[cfg(not(target_family = "wasm"))]
13pub use self::dart::*;
14#[cfg(target_family = "wasm")]
15pub use self::wasm::*;