node_sys/lib.rs
1//! Raw bindings to the Node.js API for projects using wasm-bindgen
2
3#![deny(clippy::all)]
4// #![deny(missing_docs)] // FIXME: wasm-bindgen macros break this
5
6pub(crate) mod class;
7pub mod globals;
8pub(crate) mod interface;
9pub(crate) mod module;
10
11pub use class::{Buffer, EventEmitter, Immediate, Timeout, Wasi};
12pub use interface::*;
13pub use module::*;