UNPKG

@syntest/core

Version:

The common core of the SynTest Framework

19 lines 630 B
import { Encoding } from "../search/Encoding"; import { StatisticsCollector } from "./StatisticsCollector"; import { RuntimeVariable } from "./RuntimeVariable"; /** * Writer for the summary statistics. * * @author Mitchell Olsthoorn */ export declare class SummaryWriter<T extends Encoding> { protected VARIABLES: RuntimeVariable[]; /** * Write the summary statistics to file. * * @param collector The collector for the statistics * @param filePath The file path to write to */ write(collector: StatisticsCollector<T>, filePath: string): void; } //# sourceMappingURL=SummaryWriter.d.ts.map