UNPKG

@lemonadejs/calendar

Version:

LemonadeJS reactive JavaScript calendar plugin

15 lines (12 loc) 357 B
/** * Official Type definitions for the LemonadeJS plugins * https://lemonadejs.net * Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped */ import Component from './index'; interface Calendar { (): any [key: string]: any } declare function Calendar<Calendar>(props: Component.Options): any; export default Calendar;