@toast-ui/calendar
Version:
TOAST UI Calendar
15 lines (14 loc) • 458 B
TypeScript
import { h } from 'preact';
import CalendarCore from "./calendarCore";
import type { Options } from "../types/options";
/**
* Calendar class
*
* @class Calendar
* @extends CalendarCore
* @param {object} options - Calendar options. Check out {@link CalendarCore} for more information.
*/
export default class Calendar extends CalendarCore {
constructor(container: Element | string, options?: Options);
protected getComponent(): h.JSX.Element;
}