Skip to content

Commit e32a53f

Browse files
authored
fix(types): add excludeAfterRemap and allowExternal (bcoe#297)
1 parent 58f23d1 commit e32a53f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

index.d.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ export type Watermark = [number, number];
22

33
export declare class Report {
44
constructor(opts: {
5-
exclude?: any[],
6-
include?: any[],
5+
exclude?: string | string[],
6+
excludeAfterRemap?: boolean,
7+
include?: string | string[],
78
reporter: string[],
89
reportsDirectory?: string,
910
tempDirectory?: string,
@@ -18,7 +19,7 @@ export declare class Report {
1819
resolve?: string,
1920
all?: boolean,
2021
src?: Array<string>,
21-
allowExternal: boolean
22+
allowExternal?: boolean
2223
})
2324
run(): Promise<void>;
2425
}

0 commit comments

Comments
 (0)