UNPKG

nowjs-core

Version:

NowCanDo Javascript Core [nowjs-core] is a library written by TypeScript code maintains under Apache 2.0 licence

12 lines (11 loc) 353 B
export interface PerformanceObservedCounters { StartedAt: Date; FinishedAt?: Date; ElapsedTime: number; Name: string | symbol; } export declare class PerformanceCounter { private static timers; static start(id: string | symbol): PerformanceObservedCounters; static finish(id: string | symbol): PerformanceObservedCounters; }