This commit is contained in:
Nuckyz 2024-05-26 19:38:25 -03:00
parent 4d27643d39
commit dae3841f10
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -19,7 +19,7 @@ export type WebpackQueues = unique symbol;
export type WebpackExports = unique symbol; export type WebpackExports = unique symbol;
export type WebpackError = unique symbol; export type WebpackError = unique symbol;
type AsyncModulePromise = Promise<ModuleExports> & { export type AsyncModulePromise = Promise<ModuleExports> & {
[WebpackQueues]: (fnQueue: ((queue: any[]) => any)) => any; [WebpackQueues]: (fnQueue: ((queue: any[]) => any)) => any;
[WebpackExports]: ModuleExports; [WebpackExports]: ModuleExports;
[WebpackError]?: any; [WebpackError]?: any;