primevue-mirror/components/fullcalendar/FullCalendar.d.ts

35 lines
766 B
TypeScript
Raw Normal View History

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