react-flexible-datepicker
Version:
Custom React Datepicker component
29 lines (28 loc) • 611 B
TypeScript
declare const weekDays: {
Monday: string;
Tuesday: string;
Wednesday: string;
Thursday: string;
Friday: string;
Saturday: string;
Sunday: string;
};
declare const months: {
January: string;
February: string;
March: string;
April: string;
May: string;
June: string;
July: string;
August: string;
September: string;
October: string;
November: string;
December: string;
};
export type TWeekDays = typeof weekDays;
export type TWeekDay = keyof TWeekDays;
export type TMonths = typeof months;
export type TMonth = keyof TMonths;
export {};