1 2 3 4 5 6 7 8 9 10
use wasm_bindgen::prelude::*; #[wasm_bindgen] extern "C" { #[wasm_bindgen(extends = js_sys::Object)] pub type Event; #[wasm_bindgen(method, js_name = addListener)] pub fn add_listener(this: &Event, listener: &js_sys::Function); }