UNPKG

@agendize/vue-calendar

Version:
22 lines (21 loc) 1.24 kB
import { DateClickArg as FullCalendarDateClickArg, EventResizeDoneArg as FullCalendarEventResizeDoneArg } from "@fullcalendar/interaction"; import { BusinessHoursInput as FullCalendarBusinessHoursInput, CalendarOptions, EventClickArg as FullCalendarEventClickArg, EventDropArg as FullCalendarEventDropArg, EventInput as FullCalendarEventInput } from "@fullcalendar/core"; import { ResourceInput as FullCalendarResourceInput, ResourceSourceInput as FullCalendarResourceSourceInput } from "@fullcalendar/resource"; declare const DefaultCalendarOptions: CalendarOptions; export interface DateClickArg extends FullCalendarDateClickArg { } export interface EventClickArg extends FullCalendarEventClickArg { } export type EventInput = FullCalendarEventInput; export type BusinessHoursInput = FullCalendarBusinessHoursInput; export type ResourceSourceInput = FullCalendarResourceSourceInput; export type ResourceInput = FullCalendarResourceInput; export type EventResizeDoneArg = FullCalendarEventResizeDoneArg; export type EventDropArg = FullCalendarEventDropArg; declare enum CalendarViews { 'dayGridMonth' = 0, 'timeGridWeek' = 1, 'timeGridWorkWeek' = 2, 'timeGridDay' = 3 } export { DefaultCalendarOptions, CalendarViews };