Skip to content

Commit

Permalink
fix(types): add excludeAfterRemap and allowExternal (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgecho committed Apr 7, 2021
1 parent 58f23d1 commit e32a53f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions index.d.ts
Expand Up @@ -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,
Expand All @@ -18,7 +19,7 @@ export declare class Report {
resolve?: string,
all?: boolean,
src?: Array<string>,
allowExternal: boolean
allowExternal?: boolean
})
run(): Promise<void>;
}

0 comments on commit e32a53f

Please sign in to comment.