gents

MIT/Apache 2.0

gents is a tool for generating Typescript interfaces from Rust code. We can easily use serde-json to communicate between Rust and Typescript, without writing Typescript stubs trivially. It is designed for LogiSheets and is inspired by ts-rs.

Your issues and PRs are welcome!

Why do we need gents instead of ts-rs?

Many thanks to ts-rs because it helps gents a lot.

How to use gents?

In your Rust code:

```rust use gents::TS;

[derive(TS)]

[ts(filename = "person.ts", renameall = "camelCase")]

pub struct Person { pub age: u16, pub en_name: String, }

[derive(TS)]

[ts(filename = "group.ts", renameall = "camelCase")]

pub struct Group { pub name: String, pub capacity: u16, pub members: Vec, pub leader: Option, } ```

And you should make a binary to generate the files like below:

```rust use gents::FileGroup;

fn main() { let mut group = FileGroup::new(); group.add::(); // If you need to generate the index.ts file, set true. group.gen_files("outdir", false); } ```

After running the binary, there are 2 files generated in outdir:

Check more cases and usage in the tests folder.