We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f23d1 commit e32a53fCopy full SHA for e32a53f
index.d.ts
@@ -2,8 +2,9 @@ export type Watermark = [number, number];
2
3
export declare class Report {
4
constructor(opts: {
5
- exclude?: any[],
6
- include?: any[],
+ exclude?: string | string[],
+ excludeAfterRemap?: boolean,
7
+ include?: string | string[],
8
reporter: string[],
9
reportsDirectory?: string,
10
tempDirectory?: string,
@@ -18,7 +19,7 @@ export declare class Report {
18
19
resolve?: string,
20
all?: boolean,
21
src?: Array<string>,
- allowExternal: boolean
22
+ allowExternal?: boolean
23
})
24
run(): Promise<void>;
25
}
0 commit comments