doc_type/
lib.rs

1//! # My Crate
2//! This is a crate aiming towards proving (only TS for now) types as text for
3//! documentation purposes. You can think of this crate as a thin [`specta`]
4//! wrapper that adds helper functions to the export types to manipulated
5//! produced string
6
7mod ts;
8// NOTE: rust features in development
9#[cfg(feature = "rust")]
10mod rust;
11pub use ts::generate_typedoc;
12pub use ts::types::*;