react-day-picker
Version:
Customizable Date Picker for React
6 lines (5 loc) • 411 B
TypeScript
export type FallbackLocaleCode = "ar" | "en";
export type IntlNameWidth = "long" | "short" | "narrow";
export declare const getFallbackLocaleCode: (localeCode: string) => FallbackLocaleCode;
export declare const getFallbackMonthName: (date: Date, localeCode: string, width: IntlNameWidth) => string;
export declare const getFallbackWeekdayName: (date: Date, localeCode: string, width: IntlNameWidth) => string;