Newer
Older
minerva / Userland / Libraries / LibWeb / WebAssembly / Instance.idl
@minerva minerva on 13 Jul 257 bytes Initial commit
#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;
};