mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-20 12:10:52 +00:00
16 lines
199 B
Rust
16 lines
199 B
Rust
|
extern crate wasm_bindgen;
|
||
|
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen(module = "./foo.js")]
|
||
|
extern {
|
||
|
fn wut();
|
||
|
}
|
||
|
|
||
|
#[wasm_bindgen(module = "../foo.js")]
|
||
|
extern {
|
||
|
fn wut();
|
||
|
}
|
||
|
|
||
|
fn main() {}
|