tsync 3.1.0

Generate typescript types from rust code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[tsync]
struct TestStruct {
    size: Box<i32>,
}

#[tsync]
const v: Box<i32> = 23;

#[tsync]
struct TestStruct2 {
    inner: Box<TestStruct>,
    inner_unboxed: TestStruct,
}