cronometro
Version:
Simple benchmarking suite powered by HDR histograms.
10 lines (9 loc) • 561 B
TypeScript
import { type Callback, type Options, type Results, type Tests } from './models.ts';
export * from './models.ts';
export { printResults } from './print.ts';
export * from './tracker.ts';
export declare function cronometro(tests: Tests): Promise<Results> | void;
export declare function cronometro(tests: Tests, options: Partial<Options>): Promise<Results>;
export declare function cronometro(tests: Tests, options: Partial<Options>, cb: Callback): undefined;
export declare function cronometro(tests: Tests, options: Callback): void;
export default cronometro;