UNPKG

480 BTypeScriptView Raw
1import libReport from "istanbul-lib-report";
2import { StreamReporter, VinylReporter } from "./reporter";
3export interface ContextOptions extends libReport.Context {
4 writer: libReport.FileWriter;
5}
6export declare function wrapFileReporter(reporter: libReport.Visitor): VinylReporter;
7export declare function wrapStreamReporter(reporter: libReport.Visitor): StreamReporter;
8export declare function toVinylOnlyReporter(reporter: StreamReporter, fileName: string): VinylReporter;