File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -19144,7 +19144,7 @@ declare namespace WebAssembly {
1914419144 function compileStreaming(source: Response | Promise<Response>): Promise<Module>;
1914519145 function instantiate(bytes: BufferSource, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
1914619146 function instantiate(moduleObject: Module, importObject?: Imports): Promise<Instance>;
19147- function instantiateStreaming(source : Response | Promise <Response>, importObject?: any ): Promise<WebAssemblyInstantiatedSource>;
19147+ function instantiateStreaming(response : Response | PromiseLike <Response>, importObject?: Imports ): Promise<WebAssemblyInstantiatedSource>;
1914819148 function validate(bytes: BufferSource): boolean;
1914919149}
1915019150
Original file line number Diff line number Diff line change @@ -5689,7 +5689,7 @@ declare namespace WebAssembly {
56895689 function compileStreaming ( source : Response | Promise < Response > ) : Promise < Module > ;
56905690 function instantiate ( bytes : BufferSource , importObject ?: Imports ) : Promise < WebAssemblyInstantiatedSource > ;
56915691 function instantiate ( moduleObject : Module , importObject ?: Imports ) : Promise < Instance > ;
5692- function instantiateStreaming ( source : Response | Promise < Response > , importObject ?: any ) : Promise < WebAssemblyInstantiatedSource > ;
5692+ function instantiateStreaming ( response : Response | PromiseLike < Response > , importObject ?: Imports ) : Promise < WebAssemblyInstantiatedSource > ;
56935693 function validate ( bytes : BufferSource ) : boolean ;
56945694}
56955695
Original file line number Diff line number Diff line change 32183218 "type" : " Imports"
32193219 }
32203220 ]
3221+ },
3222+ "instantiateStreaming" : {
3223+ "override-signatures" : [
3224+ " instantiateStreaming(response: Response | PromiseLike<Response>, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>"
3225+ ],
3226+ "force-references" : [
3227+ {
3228+ "type" : " Imports"
3229+ }
3230+ ]
32213231 }
32223232 }
32233233 }
You can’t perform that action at this time.
0 commit comments