mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 02:41:06 +00:00
13 lines
198 B
Rust
13 lines
198 B
Rust
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
extern "C" {
|
||
|
#[wasm_bindgen(catch)]
|
||
|
fn foo() -> Result<(), JsValue>;
|
||
|
}
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
pub fn exported() -> Result<(), JsValue> {
|
||
|
foo()
|
||
|
}
|