File tree 3 files changed +12
-2
lines changed 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -19144,7 +19144,7 @@ declare namespace WebAssembly {
19144
19144
function compileStreaming(source: Response | Promise<Response>): Promise<Module>;
19145
19145
function instantiate(bytes: BufferSource, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
19146
19146
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>;
19148
19148
function validate(bytes: BufferSource): boolean;
19149
19149
}
19150
19150
Original file line number Diff line number Diff line change @@ -5689,7 +5689,7 @@ declare namespace WebAssembly {
5689
5689
function compileStreaming ( source : Response | Promise < Response > ) : Promise < Module > ;
5690
5690
function instantiate ( bytes : BufferSource , importObject ?: Imports ) : Promise < WebAssemblyInstantiatedSource > ;
5691
5691
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 > ;
5693
5693
function validate ( bytes : BufferSource ) : boolean ;
5694
5694
}
5695
5695
Original file line number Diff line number Diff line change 3218
3218
"type" : " Imports"
3219
3219
}
3220
3220
]
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
+ ]
3221
3231
}
3222
3232
}
3223
3233
}
You can’t perform that action at this time.
0 commit comments