1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! External [`Jason`] API. #[cfg(not(target_family = "wasm"))] pub mod dart; pub mod err; mod shared; #[cfg(target_family = "wasm")] mod wasm; pub use shared::*; #[cfg(not(target_family = "wasm"))] pub use self::dart::*; #[cfg(target_family = "wasm")] pub use self::wasm::*;