specta 2.0.0-rc.9

Easily export your Rust types to other languages
Documentation
use specta::{
    export,
    ts::{BigIntExportBehavior, ExportConfig},
    Type,
};

#[derive(Type)]
pub struct TypeOne {
    pub field1: String,
    pub field2: TypeTwo,
}

#[derive(Type)]
pub struct TypeTwo {
    pub my_field: String,
}

fn main() {
    // This will automatically discover all types in your project!
    export::ts("./bindings.ts").unwrap();

    // You can also override the export configuration.
    export::ts_with_cfg(
        "./bindings2.ts",
        "".into(),
        // Be aware this won't be typesafe unless your using a ser/deserializer that converts BigInt types to a number.
        &ExportConfig::default().bigint(BigIntExportBehavior::Number),
    )
    .unwrap();
}