1 | export declare type CacheValue = Intl.NumberFormat | Intl.DateTimeFormat | Intl.PluralRules | any;
|
2 | export interface MemoizeFormatConstructorFn {
|
3 | <T extends {
|
4 | new (...args: any[]): any;
|
5 | }>(constructor: T, cache?: Record<string, CacheValue>): (...args: ConstructorParameters<T>) => any;
|
6 | }
|
7 | declare const memoizeFormatConstructor: MemoizeFormatConstructorFn;
|
8 | export default memoizeFormatConstructor;
|
9 | //# sourceMappingURL=index.d.ts.map |
\ | No newline at end of file |