mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-01 16:42:16 +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();
|
||
|
};
|