mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-21 20:50:51 +00:00
14 lines
192 B
Rust
14 lines
192 B
Rust
#![crate_type = "rlib"]
|
|
|
|
extern crate wasm_bindgen;
|
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
#[wasm_bindgen]
|
|
impl A {
|
|
#[wasm_bindgen(method)]
|
|
#[wasm_bindgen(method)]
|
|
pub fn foo() {
|
|
}
|
|
}
|