import { IntlConfig, IntlShape } from 'react-intl'; import { Nullable } from 'tsdef'; import { FileData } from './file.types'; export interface I18nConfig extends Partial { formatters?: Partial; } export interface ChonkyFormatters { formatFileModDate: (intl: IntlShape, file: Nullable) => Nullable; formatFileSize: (intl: IntlShape, file: Nullable) => Nullable; }