mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 19:01:06 +00:00
10 lines
174 B
Plaintext
10 lines
174 B
Plaintext
|
[NoInterfaceObject]
|
||
|
interface NoInterfaceObject {
|
||
|
readonly attribute double number;
|
||
|
void foo();
|
||
|
};
|
||
|
|
||
|
interface GetNoInterfaceObject {
|
||
|
static NoInterfaceObject get();
|
||
|
};
|