deno_bindgen
deno_bindgen copied to clipboard
feat: callbacks
Waiting on https://github.com/denoland/deno/pull/14663
#[deno_bindgen]
fn callback(cb: fn (a: i32, b: i32)) {
cb(1, 2)
}