FullCalendar.d.ts 779 B

123456789101112131415
  1. import { PropType } from 'vue';
  2. import { Calendar, CalendarOptions } from '@fullcalendar/core';
  3. import { CustomRendering } from '@fullcalendar/core/internal';
  4. declare const FullCalendar: import("vue").DefineComponent<{
  5. options: PropType<CalendarOptions>;
  6. }, unknown, {
  7. renderId: number;
  8. customRenderingMap: Map<string, CustomRendering<any>>;
  9. }, {}, {
  10. getApi(): Calendar;
  11. buildOptions(suppliedOptions: CalendarOptions | undefined): CalendarOptions;
  12. }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  13. options: PropType<CalendarOptions>;
  14. }>>, {}>;
  15. export default FullCalendar;