Skip to main content

forge_codegen/
lib.rs

1#![allow(clippy::unwrap_used, clippy::indexing_slicing)]
2
3pub mod parser;
4pub mod typescript;
5
6pub use parser::parse_project;
7pub use typescript::{
8    ApiGenerator, ClientGenerator, Error, GenerateOptions, StoreGenerator, TypeGenerator,
9    TypeScriptGenerator,
10};