pub trait Codegen {
    fn generate_typescript(&self, ctx: &CodegenContext<'_>) -> Result<String>;
}
Expand description

Generate TypeScript code for a value.

Required methods

Implementations on Foreign Types

Implementors