UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

16 lines (15 loc) 305 B
export type Schedules = { startDate: Date; endDate?: Date; color?: string; content?: string; [key: string]: any; }[]; export type DateItem = { isPrevMonth?: boolean; isNextMonth?: boolean; isCurMonth?: boolean; value: number; date: Date; events?: Schedules; };