tsify-next 0.5.6

Tsify-next is a library for generating TypeScript definitions from rust code.
Documentation
1
2
3
4
5
6
type TypeAlias<T, U> = Foo<T, i32, U>;
const _: () = {
    use wasm_bindgen::prelude::*;
    #[wasm_bindgen(typescript_custom_section)]
    const TS_APPEND_CONTENT: &'static str = "export type TypeAlias<T, U> = Foo<T, number, U>;";
};