Fixed #1836 - For FullCalendar
parent
98499261dc
commit
791cdd34a1
|
@ -1,10 +1,36 @@
|
||||||
interface FullCalendarProps {
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||||
|
|
||||||
|
export interface FullCalendarProps {
|
||||||
events?: any[];
|
events?: any[];
|
||||||
options?: object;
|
options?: object;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare class FullCalendar {
|
export interface FullCalendarSlots {
|
||||||
$props: FullCalendarProps;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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:
|
||||||
|
*
|
||||||
|
* - [FullCalendar](https://www.primefaces.org/primevue/showcase/#/fullcalendar)
|
||||||
|
*
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
export default FullCalendar;
|
export default FullCalendar;
|
||||||
|
|
Loading…
Reference in New Issue