10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
|
import './vdom';
|
||
|
import * as React from 'react';
|
||
|
import { CalendarOptions, CalendarApi } from '@fullcalendar/common';
|
||
|
export default class FullCalendar extends React.Component<CalendarOptions> {
|
||
|
private _calendarApi;
|
||
|
render(): JSX.Element;
|
||
|
getApi(): CalendarApi;
|
||
|
}
|
||
|
export * from '@fullcalendar/common';
|