This commit is contained in:
Nuckyz 2024-05-22 06:22:37 -03:00
parent d5bcbf54f9
commit f6a7cdc430
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -131,8 +131,11 @@ type WebpackRequire = ((moduleId: PropertyKey) => Module) & {
* When (priority & 1) it will wait for all other handlers with lower priority to be executed before itself is executed. * When (priority & 1) it will wait for all other handlers with lower priority to be executed before itself is executed.
*/ */
O: OnChunksLoaded; O: OnChunksLoaded;
/** Instantiate a wasm instance with source using "wasmModuleHash", and importObject "importsObj", and then assign the exports of its instance to "exports" */ /**
v: (exports: AnyRecord, wasmModuleId: any, wasmModuleHash: string, importsObj?: WebAssembly.Imports) => void; * Instantiate a wasm instance with source using "wasmModuleHash", and importObject "importsObj", and then assign the exports of its instance to "exports"
* @returns The exports of the wasm instance
*/
v: (exports: AnyRecord, wasmModuleId: any, wasmModuleHash: string, importsObj?: WebAssembly.Imports) => Promise<any>;
/** Bundle public path, where chunk files are stored. Used by other methods which load chunks to obtain the full asset url */ /** Bundle public path, where chunk files are stored. Used by other methods which load chunks to obtain the full asset url */
p: string; p: string;
/** Document baseURI or WebWorker location.href */ /** Document baseURI or WebWorker location.href */