@tencentcloud/chat-uikit-vue
Version:
Build In-App Chat & Audio/Video Call & Live Streaming in minutes with UIKit components for Vue.
20 lines (18 loc) • 370 B
text/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;
}