wasm-bindgen/src/lib.rs
2017-12-14 19:31:01 -08:00

13 lines
189 B
Rust

#![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,
}