Skip to main content

forge_codegen/
lib.rs

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