Skip to content

Commit

Permalink
chore: fix indentation (bcoe#365)
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin E. Coe <[email protected]>
  • Loading branch information
XhmikosR and bcoe authored Feb 26, 2022
1 parent 1357b4b commit c3c08f7
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
18 changes: 9 additions & 9 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"reporter": [
"html",
"text"
],
"lines": 95,
"branches": "82",
"statements": "95"
}
{
"reporter": [
"html",
"text"
],
"lines": 95,
"branches": "82",
"statements": "95"
}
44 changes: 22 additions & 22 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
export type Watermark = [number, number];

export declare class Report {
constructor(opts: {
exclude?: string | string[],
extension?: string | string[],
excludeAfterRemap?: boolean,
include?: string | string[],
reporter: string[],
reportsDirectory?: string,
tempDirectory?: string,
watermarks?: Partial<{
statements: Watermark;
functions: Watermark;
branches: Watermark;
lines: Watermark;
}>,
omitRelative?: boolean,
wrapperLength?: number,
resolve?: string,
all?: boolean,
src?: Array<string>,
allowExternal?: boolean
})
run(): Promise<void>;
constructor(opts: {
exclude?: string | string[],
extension?: string | string[],
excludeAfterRemap?: boolean,
include?: string | string[],
reporter: string[],
reportsDirectory?: string,
tempDirectory?: string,
watermarks?: Partial<{
statements: Watermark;
functions: Watermark;
branches: Watermark;
lines: Watermark;
}>,
omitRelative?: boolean,
wrapperLength?: number,
resolve?: string,
all?: boolean,
src?: Array<string>,
allowExternal?: boolean
})
run(): Promise<void>;
}

0 comments on commit c3c08f7

Please sign in to comment.