5 releases
Uses old Rust 2015
0.1.4 | Dec 12, 2018 |
---|---|
0.1.3 | Dec 12, 2018 |
0.1.2 | Nov 22, 2018 |
0.1.1 | Nov 22, 2018 |
0.1.0 | Nov 21, 2018 |
#1890 in Procedural macros
63 downloads per month
25KB
271 lines
wasm-typescript-definition
Exports serde-serializable structs and enums to Typescript definitions when used with wasm-bindgen.
#[derive(Serialize, TypescriptDefinition)]
enum Enum {
#[allow(unused)]
V1 {
#[serde(rename = "Foo")]
foo: bool,
},
#[allow(unused)]
V2 {
#[serde(rename = "Bar")]
bar: i64,
#[serde(rename = "Baz")]
baz: u64,
},
#[allow(unused)]
V3 {
#[serde(rename = "Quux")]
quux: String,
},
}
With the patched version of wasm-bindgen that supports typescript_custom_section (TODO), this will output in your .d.ts
definition file:
export type Enum =
| {"tag": "V1", "fields": { "Foo": boolean, }, }
| {"tag": "V2", "fields": { "Bar": number, "Baz": number, }, }
| {"tag": "V3", "fields": { "Quux": string, }, }
;
Credit
Forked from rust-serde-schema
by @srijs.
License
MIT or Apache-2.0, at your option.
Dependencies
~2.5MB
~54K SLoC