UNPKG

309 BPlain TextView Raw
1import type { DefaultLocale } from '../Locales';
2
3export type Locale = typeof DefaultLocale;
4
5export interface LocaleData {
6 // firstDayOfWeek: Function;
7 // longDateFormat: Function;
8 months: () => string[];
9 monthsShort: () => string[];
10 weekdaysMin: () => string[];
11 weekdaysShort: () => string[];
12}