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. Many thanks to them!

Your issues and PRs are welcome!

Why do you need gents?

Why not ts-rs?

How to use gents?

In your Rust code:

You should import gents in your Cargo.toml.

toml [dev-dependencies] gents = "0.4" gents_derives = "0.4"

```rust use gents_derives::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 then you can write a unit test to generate the files like below:

```rust

[ignore]

[test]

fn gents() { use gents::FileGroup; 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.