Skip to content

Deriving the TS trait

escritorio-gustavo edited this page Feb 5, 2024 · 26 revisions

#[derive(TS)]

The TS trait can be easily derived through its #[derive(TS)] macro, which will automatically handle mapping a Rust type into TypeScript type definitions.

The #[derive(TS)] macro provides an attribute helper macro called #[ts(...)] which can help you control how the types will be generated

#[ts(...)] attributes

Container attributes

These are attributes that can be used both with structs and enums

#[ts(export)]

#[ts(export_to = "...")]

#[ts(rename = "...")]

#[ts(rename_all = "...")]

Struct attributes

Struct field attributes

Enum attributes

Enum variant attributes

Clone this wiki locally