2022-09-06 12:03:37 +00:00
|
|
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
|
|
|
|
|
|
|
export interface FullCalendarProps {
|
|
|
|
events?: any[];
|
|
|
|
options?: object;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface FullCalendarSlots {
|
|
|
|
}
|
|
|
|
|
|
|
|
export declare type FullCalendarEmits = {
|
|
|
|
}
|
|
|
|
|
|
|
|
declare class FullCalendar extends ClassComponent<FullCalendarProps, FullCalendarSlots, FullCalendarEmits> { }
|
|
|
|
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface GlobalComponents {
|
|
|
|
FullCalendar: GlobalComponentConstructor<FullCalendar>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* PrimeVue provides theming for the FullCalendar Vue component.
|
|
|
|
*
|
|
|
|
* Helper API:
|
|
|
|
*
|
|
|
|
* - [FullCalendar](https://fullcalendar.io/docs/vue)
|
|
|
|
*
|
|
|
|
* Demos:
|
|
|
|
*
|
2022-09-12 10:35:24 +00:00
|
|
|
* - [FullCalendar](https://www.primefaces.org/primevue/fullcalendar)
|
2022-09-06 12:03:37 +00:00
|
|
|
*
|
|
|
|
* @deprecated
|
|
|
|
*/
|
|
|
|
export default FullCalendar;
|