mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-29 13:41:21 +00:00
20 lines
357 B
Plaintext
20 lines
357 B
Plaintext
|
enum UnstableEnum {
|
||
|
"a",
|
||
|
"b"
|
||
|
};
|
||
|
|
||
|
dictionary UnstableDictionary {
|
||
|
UnstableEnum unstableEnum;
|
||
|
};
|
||
|
|
||
|
typedef unsigned long UnstableTypedef;
|
||
|
|
||
|
[NoInterfaceObject]
|
||
|
partial interface UnstableInterface {
|
||
|
UnstableTypedef enum_value(optional UnstableDictionary unstableDictionary = {});
|
||
|
};
|
||
|
|
||
|
interface GetUnstableInterface {
|
||
|
static UnstableInterface get();
|
||
|
};
|