c8
Version:
output coverage reports using Node.js' built in coverage
26 lines (24 loc) • 687 B
TypeScript
export type Watermark = [number, number];
export declare class Report {
constructor(opts: {
exclude?: 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>;
}