UNPKG

vue-simple-calendar

Version:
19 lines (18 loc) 494 B
interface ICalendarItem { id: string; startDate: Date; title: string; tooltip?: string; endDate?: Date; url?: string; classes?: string[] | null; style?: string; } interface INormalizedCalendarItem extends ICalendarItem { endDate: Date; originalItem: ICalendarItem; classes: string[]; itemRow?: number; } type DateTimeFormatOption = "long" | "short" | "narrow" | undefined; export { ICalendarItem, INormalizedCalendarItem, DateTimeFormatOption };