123456789101112131415161718192021222324252627282930313233343536373839404142 |
-
-
- export type ProgressPluginArgument = ProgressPluginOptions | HandlerFunction;
-
- export type HandlerFunction = (
- percentage: number,
- msg: string,
- ...args: string[]
- ) => void;
-
- export interface ProgressPluginOptions {
-
-
- activeModules?: boolean;
-
-
- entries?: boolean;
-
-
- handler?: HandlerFunction;
-
-
- modules?: boolean;
-
-
- modulesCount?: number;
-
-
- profile?: true | false | null;
- }
|