UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

28 lines (27 loc) 1.14 kB
declare function prevMonth(): void; declare function nextMonth(): void; declare function prevYear(): void; declare function nextYear(): void; declare function today(): void; declare const dateTypeFn: { readonly 'prev-year': typeof prevYear; readonly 'prev-month': typeof prevMonth; readonly today: typeof today; readonly 'next-month': typeof nextMonth; readonly 'next-year': typeof nextYear; }; type DateType = keyof typeof dateTypeFn | Date; declare function selectDate(value: DateType): void; declare function __VLS_template(): { calendar?(_: {}): any; }; declare const __VLS_component: import('vue').DefineComponent<{}, { selectDate: typeof selectDate; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };