napi-rs/examples/napi/src/lib.rs
2021-10-27 14:42:57 +08:00

14 lines
189 B
Rust

#[macro_use]
extern crate napi_derive;
#[macro_use]
extern crate serde_derive;
mod array;
mod callback;
mod class;
mod r#enum;
mod error;
mod nullable;
mod number;
mod object;
mod string;