20 lines
370 B
TypeScript
Raw Normal View History

2025-03-19 15:35:09 +08:00
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;
}