wiwi_wasm/object.rs
1// todo this file is incomplete
2
3use crate::prelude_internal::*;
4
5#[doc(inline)]
6pub use ns::{ ExternObjectNs, ExternObjectNsWithState };
7
8pub mod ns;
9mod raw;
10
11gen_struct! {
12 struct ExternObject ExternObjectWithState;
13
14 deref ExternAny;
15 deref_value todo!();
16}
17
18gen_state! {}