uniffi-bindgen-js 0.2.1

TypeScript/JavaScript bindings generator for UniFFI
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod cli;
pub mod js;

use anyhow::Result;

pub fn run(cli: cli::Cli) -> Result<()> {
    match cli.command {
        cli::Command::Generate(args) => js::generate_bindings(&args),
    }
}