Files
talk-pro/node_modules/lru-cache/dist/commonjs/node/perf.d.ts

12 lines
328 B
TypeScript
Raw Normal View History

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