export interface ICalendarDay { time: number; YMD?: string; isToday: boolean; selected: boolean; disable: boolean; cssClass: string; isLastMonth?: boolean; isNextMonth?: boolean; title?: string; subTitle?: string; marked?: boolean; style?: { title?: string; subTitle?: string; }; isFirst?: boolean; isLast?: boolean; }