@toast-ui/calendar
Version:
TOAST UI Calendar
12 lines (11 loc) • 341 B
TypeScript
import { h } from 'preact';
import CalendarCore from "./calendarCore";
import type { Options } from "../types/options";
export default class Month extends CalendarCore {
constructor(container: Element, options?: Options);
protected getComponent(): h.JSX.Element;
/**
* Hide the more view
*/
hideMoreView(): void;
}