napi-rs/examples/napi/src/lib.rs

15 lines
189 B
Rust
Raw Normal View History

#[macro_use]
extern crate napi_derive;
2021-09-24 18:01:54 +09:00
#[macro_use]
extern crate serde_derive;
mod array;
mod callback;
mod class;
mod r#enum;
2021-09-24 10:46:27 +09:00
mod error;
mod nullable;
mod number;
mod object;
mod string;