mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-05 20:01:05 +00:00
12 lines
299 B
TypeScript
12 lines
299 B
TypeScript
|
import * as wbg from './pkg/typescript_tests';
|
||
|
import * as wasm from './pkg/typescript_tests_bg';
|
||
|
|
||
|
const a1: (a: string) => void = wbg.greet;
|
||
|
const a2: (a: number, b: number) => void = wasm.greet;
|
||
|
const a3: WebAssembly.Memory = wasm.memory;
|
||
|
|
||
|
const c = new wbg.A();
|
||
|
wbg.A.other();
|
||
|
c.foo();
|
||
|
c.free();
|