1#![warn(missing_docs)] 2 3//! A crate for representing and creating TypeScript type definitions as values, 4//! i. e. a subset of the TypeScript abstract syntax. 5 6mod ast; 7 8pub use ast::*;