Files
talk-pro/node_modules/lru-cache/dist/esm/browser/perf.d.ts
2026-05-12 16:16:03 +08:00

12 lines
328 B
TypeScript

/**
* 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