UNPKG

timer-db

Version:

A library for cubing timer results storage with CouchDB-based synchronization.

7 lines 445 B
import { Attempt } from "./data/Attempt"; export declare function mean(attempts: Attempt[]): number | null; export declare function trimmedAverage(attempts: Attempt[]): number | null; export declare function best(attempts: Attempt[]): number | null; export declare function worst(attempts: Attempt[]): number | null; export declare function formatTime(attempt: Attempt, decimalDigits?: 0 | 1 | 2 | 3): string; //# sourceMappingURL=stats.d.ts.map