Skip to main content

typewriter_typescript/
lib.rs

1//! # typewriter-typescript
2//!
3//! TypeScript / JavaScript emitter for the typewriter type sync SDK.
4//! Generates `.ts` typed interfaces and discriminated union types.
5
6mod emitter;
7mod mapper;
8
9pub use mapper::TypeScriptMapper;