UNPKG

@quasar/quasar-ui-qcalendar

Version:

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

23 lines (22 loc) 701 B
import { PropType } from 'vue'; import { validateNumber } from '../utils/Timestamp'; export interface ColumnObject { [key: string]: any; } export type ColumnObjectArray = ColumnObject[]; export interface ColumnProps { columnCount: number | string; columnIndexStart: number | string; } export declare const useColumnProps: { readonly columnCount: { readonly type: PropType<ColumnProps["columnCount"]>; readonly default: 0; readonly validator: typeof validateNumber; }; readonly columnIndexStart: { readonly type: PropType<ColumnProps["columnIndexStart"]>; readonly default: 0; readonly validator: typeof validateNumber; }; };