mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-15 12:44:31 +03:00
01a52233d3
This commit enables `[NoInterfaceObject]` annotated interfaces in `web-sys`. The `NoInterfaceObject` attribute means that there's not actually a JS class for the object, but all of its properties and such can still be accessed structually and invoked. This should help provide more bindings for some more common types on the web! Note that this builds on recent features to ensure that `dyn_into` and friends always fail for `NoInterfaceObject` objects because they don't actually have a class. Closes #893 Closes #1257 Closes #1315
9 lines
119 B
JavaScript
9 lines
119 B
JavaScript
global.GetNoInterfaceObject = class {
|
|
static get() {
|
|
return {
|
|
number: 3,
|
|
foo: () => {},
|
|
}
|
|
}
|
|
};
|