UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

35 lines (28 loc) 781 B
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: * * - [FullCalendar](https://www.primefaces.org/primevue/fullcalendar) * * @deprecated */ export default FullCalendar;