rittenhop-dev/versions/5.94.2/node_modules/intl-format-cache/lib/index.d.ts

9 lines
447 B
TypeScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
export declare type CacheValue = Intl.NumberFormat | Intl.DateTimeFormat | Intl.PluralRules | any;
export interface MemoizeFormatConstructorFn {
<T extends {
new (...args: any[]): any;
}>(constructor: T, cache?: Record<string, CacheValue>): (...args: ConstructorParameters<T>) => any;
}
declare const memoizeFormatConstructor: MemoizeFormatConstructorFn;
export default memoizeFormatConstructor;
//# sourceMappingURL=index.d.ts.map