wasm-bindgen-utils
Provides utilities, helpers and macros to easily build and customize wasm_bindgen bindings. For more details please read the doumentation of the items of this lib.
Example:
use ;
// impl wasm traits for SomeType
impl_wasm_traits!;
// impl tsify manually for SomeType (as an alternative to Tsify derive macro)
// the given string literal will become the typescript interface bindings for SomeType
impl_custom_tsify!;
// appends a custom section to the .d.ts generated bindings
add_ts_content!
// now someType can be used on functions and methods natively
pub async