jscrs
Version:
comment-rate-statistics
9 lines (8 loc) • 343 B
TypeScript
import { IOptions } from "../interfaces/options.i";
import { ILogReporter } from "../interfaces/log.i";
import { IReport } from "../interfaces/report.i";
export declare class JSONReporter implements ILogReporter {
protected options: IOptions;
constructor(options: IOptions);
report(reporter: Map<string, IReport>): void;
}