diff --git a/index.d.ts b/index.d.ts index 9ce05a40..fc93511c 100644 --- a/index.d.ts +++ b/index.d.ts @@ -2,8 +2,9 @@ export type Watermark = [number, number]; export declare class Report { constructor(opts: { - exclude?: any[], - include?: any[], + exclude?: string | string[], + excludeAfterRemap?: boolean, + include?: string | string[], reporter: string[], reportsDirectory?: string, tempDirectory?: string, @@ -18,7 +19,7 @@ export declare class Report { resolve?: string, all?: boolean, src?: Array, - allowExternal: boolean + allowExternal?: boolean }) run(): Promise; }