UNPKG

@strapi/strapi

Version:

An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite

8 lines 298 B
export interface TimeMeasurer { start: (name: string) => void; end: (name: string) => number; getTimings: () => Record<string, number>; } export declare function getTimer(): TimeMeasurer; export declare const prettyTime: (timeInMs: number) => string; //# sourceMappingURL=timer.d.ts.map