@c4312/matcha
Version:
A caffeine driven, simple command line for benchmarking
11 lines (10 loc) • 365 B
TypeScript
/// <reference types="node" />
import { Benchmark, IReporter, IReporterFactory } from '.';
export declare const csvFactory: IReporterFactory;
export declare class CsvReporter implements IReporter {
private readonly out;
constructor(out: NodeJS.WriteStream);
onStartCycle(): void;
onFinishCycle(benchmark: Benchmark): void;
onComplete(): void;
}