schema_to_emmylua 0.1.0

A tool to convert JSON schema to EmmyLua annotations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod converter;
mod lua_emitter;
mod markdown_doc;
mod schema_walker;

pub use converter::SchemaConverter;

pub struct ConvertResult {
    pub annotation_text: String,
    pub root_type_name: String,
}