karma-typescript
Version:
Simplifying running unit tests with coverage for Typescript projects.
10 lines (9 loc) • 343 B
TypeScript
import { Threshold } from "../istanbul/threshold";
import { Configuration } from "../shared/configuration";
export declare class Reporter {
create: (baseReporterDecorator: any, logger: any) => void;
private log;
private coverageMap;
constructor(config: Configuration, threshold: Threshold);
private getReportDestination;
}