UNPKG

@quasar/quasar-ui-qcalendar

Version:

QCalendar - Day/Month/Week Calendars, Popups, Date Pickers, Schedules, Agendas, Planners and Tasks for your Vue Apps

17 lines (16 loc) 339 B
import { PropType } from 'vue'; /** * Interface for maxDays prop. */ export interface MaxDaysProps { maxDays: number; } /** * Defines the maxDays prop for components. */ export declare const useMaxDaysProps: { readonly maxDays: { readonly type: PropType<MaxDaysProps["maxDays"]>; readonly default: 1; }; };