mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-16 22:11:45 +03:00
12 lines
183 B
Rust
12 lines
183 B
Rust
|
extern crate wasm_bindgen;
|
||
|
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
extern "C" {
|
||
|
type Foo;
|
||
|
|
||
|
#[wasm_bindgen(method, structural, host_binding)]
|
||
|
fn bar(this: &Foo);
|
||
|
}
|