date.ts 281 B

12345
  1. export const datePickTypes = ['year', 'month', 'date', 'dates', 'week', 'datetime', 'datetimerange', 'daterange', 'monthrange'] as const
  2. export const WEEK_DAYS = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'] as const
  3. export type DatePickType = (typeof datePickTypes)[number]