@ebay/ebayui-core
Version:
Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.
21 lines (20 loc) • 600 B
TypeScript
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;