devela/lang/js/
mod.rs
1mod definitions; #[cfg(feature = "unsafe_ffi")]
9crate::items! {
10 mod reexport; #[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "unsafe_ffi")))]
13 #[cfg_attr(feature = "nightly_doc", doc(cfg(target_arch = "wasm32")))]
14 #[cfg(not(windows))]
16 mod web_api;
17}
18
19crate::items! { #[allow(unused)]
21 pub use _mods::*;
22
23 mod _mods { #![allow(unused)]
24 pub use super::definitions::*;
25
26 #[cfg(feature = "unsafe_ffi")]
27 pub use super::reexport::*;
28
29 }
35 pub(super) mod _all { #![allow(unused)]
36 #[doc(inline)]
37 pub use super::_mods::*;
38 }
39}
40