@c4312/matcha
Version:
A caffeine driven, simple command line for benchmarking
12 lines (11 loc) • 335 B
TypeScript
import { IReporter, Benchmark } from '.';
/**
* A reporter that writes nothing but simply
* collects benchmarks that can be read later.
*/
export declare class GatherReporter implements IReporter {
readonly results: Benchmark[];
onStartCycle(): void;
onFinishCycle(benchmark: Benchmark): void;
onComplete(): void;
}