Spaces:
Paused
Paused
File size: 328 Bytes
3401f26 | 1 2 3 4 5 6 7 8 9 10 11 12 | /**
* this provides the default Perf object source, either the
* `performance` global, or the `Date` constructor.
*
* it can be passed in via configuration to override it
* for a single LRU object.
*/
export type Perf = {
now: () => number;
};
export declare const defaultPerf: Perf;
//# sourceMappingURL=perf.d.ts.map |