kruonis
Version:
A tool to perform benchmarks on TS
17 lines (16 loc) • 389 B
TypeScript
/**
* The stats resultant of running a test
*/
export declare class Stats {
readonly mean: number;
readonly std: number;
readonly count: number;
readonly max: number;
readonly min: number;
/**
* Constructor
*
* @param cycleTimes list of obtained performance times of each cycle
*/
constructor(cycleTimes: Array<number>);
}