jiuyiUniapp/jiuyi/node_modules/@tencentcloud/chat-uikit-uniapp/components/common/DatePicker/date-picker.ts

20 lines
370 B
TypeScript

import { Dayjs } from 'dayjs';
export type DateCellType =
| 'normal'
| 'today'
| 'week'
| 'next-month'
| 'prev-month';
export interface DateCell {
text?: number;
disabled?: boolean;
isSelected?: boolean;
isSelectedStart?: boolean;
isSelectedEnd?: boolean;
isInRange?: boolean;
isCurrent?: boolean;
date: typeof Dayjs;
type?: DateCellType;
}