UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

21 lines 641 B
export interface LocaleInfo { /** order of year, month, and day in date format */ o: `${"y" | "m" | "d"}${"y" | "m" | "d"}${"y" | "m" | "d"}`; /** separators between year, month, and day */ s: string[]; /** first day of week, 0 is Sunday */ w: number; /** letter representing day */ d: string; /** letter representing month */ m: string; /** letter representing year */ y: string; } export interface Locales { _: Partial<LocaleInfo>; [country: string]: Locales | Partial<LocaleInfo>; } declare const _default: Locales; export default _default; //# sourceMappingURL=locale-info.d.ts.map