ladybird/Userland/Libraries/LibWeb/WebAssembly/Instance.idl
2023-03-16 13:54:16 +01:00

10 lines
257 B
Plaintext

#import <WebAssembly/Module.idl>
// https://webassembly.github.io/spec/js-api/#instances
[LegacyNamespace=WebAssembly, Exposed=*]
interface Instance {
constructor(Module module, optional object importObject);
readonly attribute object exports;
};