These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
223 B
Text
7 lines
223 B
Text
// https://webassembly.github.io/spec/js-api/#instances
|
|
[LegacyNamespace=WebAssembly, Exposed=*]
|
|
interface Instance {
|
|
constructor(Module module, optional object importObject);
|
|
|
|
readonly attribute object exports;
|
|
};
|