extern crate meshtastic;
use specta_typescript::Typescript;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
Typescript::default()
.bigint(specta_typescript::BigIntExportBehavior::String)
.format(specta_typescript::Format::ModulePrefixedName)
.export_to("./examples/bindings.ts", &specta::export())?;
Ok(())
}