UNPKG

element-plus

Version:

A Component Library for Vue 3

14 lines (13 loc) 412 B
import "../../../utils/index.js"; import { ExtractPublicPropTypes } from "vue"; import { Dayjs } from "dayjs"; //#region ../../packages/components/calendar/src/date-table.d.ts type CalendarDateCellType = 'next' | 'prev' | 'current'; interface DateTableProps { selectedDay?: Dayjs; range?: [Dayjs, Dayjs]; date: Dayjs; hideHeader?: boolean; } //#endregion export { CalendarDateCellType, DateTableProps };