cronometro
Version:
Simple benchmarking suite powered by HDR histograms.
12 lines (11 loc) • 318 B
TypeScript
import { type Histogram } from 'hdr-histogram-js';
import { type Result } from './models.ts';
export declare class Tracker {
iterations: number;
histogram: Histogram;
error: Error | undefined;
constructor();
get results(): Result;
get standardError(): number;
track(start: bigint): void;
}