1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-05 20:01:05 +00:00

13 lines
189 B
Rust
Raw Normal View History

2017-12-14 19:31:01 -08:00
#![feature(use_extern_macros)]
extern crate wasm_bindgen_macro;
pub mod prelude {
pub use wasm_bindgen_macro::wasm_bindgen;
pub use Object;
}
pub struct Object {
idx: u32,
}