mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
* fix(cli,napi-derive): re-export types from shared crate * chore: publish - @napi-rs/cli@2.15.1-alpha.0 * Clippy fix * Fix memory testing
7 lines
80 B
Rust
7 lines
80 B
Rust
use napi_derive::napi;
|
|
|
|
#[napi(object)]
|
|
pub struct Shared {
|
|
pub value: u32,
|
|
}
|