diff --git a/src/webpack/wreq.d.ts b/src/webpack/wreq.d.ts index 38038907a..85f2c9ab7 100644 --- a/src/webpack/wreq.d.ts +++ b/src/webpack/wreq.d.ts @@ -19,7 +19,7 @@ export type WebpackQueues = unique symbol; export type WebpackExports = unique symbol; export type WebpackError = unique symbol; -type AsyncModulePromise = Promise & { +export type AsyncModulePromise = Promise & { [WebpackQueues]: (fnQueue: ((queue: any[]) => any)) => any; [WebpackExports]: ModuleExports; [WebpackError]?: any;