tsync 3.1.0

Generate typescript types from rust code.
Documentation
1
2
3
4
5
6
7
#[tsync]
struct SomeStruct {
    #[serde(skip)]
    foo: ThisIsARandomExternalType,
    #[tsync(ts_type = "any")]
    foo2: ThisIsARandomExternalType,
}