From 81bb1460616126a7c66157a405ded70b36a6284e Mon Sep 17 00:00:00 2001 From: Sibiraj <20282546+sibiraj-s@users.noreply.github.com> Date: Thu, 28 Jan 2021 17:31:11 +0530 Subject: [PATCH] make ProgressPlugin options optional --- types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.d.ts b/types.d.ts index a4f3deb7aee..8d312a1c8c8 100644 --- a/types.d.ts +++ b/types.d.ts @@ -7463,7 +7463,7 @@ declare interface ProfilingPluginOptions { outputPath?: string; } declare class ProgressPlugin { - constructor(options: ProgressPluginArgument); + constructor(options?: ProgressPluginArgument); profile?: null | boolean; handler?: (percentage: number, msg: string, ...args: string[]) => void; modulesCount?: number;