mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-16 22:11:45 +03: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();
|
||
|
};
|