wasm-web-api.idl (555B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: WebAssembly Web API (https://webassembly.github.io/spec/web-api/) 5 6 [Exposed=(Window,Worker)] 7 partial namespace WebAssembly { 8 Promise<Module> compileStreaming(Promise<Response> source, optional WebAssemblyCompileOptions options = {}); 9 Promise<WebAssemblyInstantiatedSource> instantiateStreaming( 10 Promise<Response> source, optional object importObject, optional WebAssemblyCompileOptions options = {}); 11 };