mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-01 07:01:22 +00:00
* Re-enable WebGPU WebIDL as experimental * Add `web_sys_unstable_apis` attribute * Add test for unstable WebIDL * Include unstable WebIDL in docs.rs builds * Add docs and doc comment for unstable APIs * Add unstable API checks to CI
20 lines
357 B
Plaintext
Vendored
20 lines
357 B
Plaintext
Vendored
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();
|
|
};
|