mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-02 18:31:05 +00:00
9 lines
119 B
JavaScript
9 lines
119 B
JavaScript
|
global.GetNoInterfaceObject = class {
|
||
|
static get() {
|
||
|
return {
|
||
|
number: 3,
|
||
|
foo: () => {},
|
||
|
}
|
||
|
}
|
||
|
};
|