UNPKG

@quasar/quasar-ui-qcalendar

Version:

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

27 lines (26 loc) 826 B
import { ComputedRef } from 'vue'; export declare const useCellWidthProps: { cellWidth: (StringConstructor | NumberConstructor)[]; }; /** * Determines whether the cell width is defined. * @param {Object} props - The component props. * @returns {Object} - The `isSticky` computed property. */ /** * Determines whether the cell width is defined. * @param {Object} props - The component props. * @returns {Object} - The `isSticky` computed property. */ /** * @param {Object} props - The component props. * @returns {Object} - An object containing the `isSticky` computed property. */ export interface CellWidthProps { cellWidth?: number | string; } interface UseCellWidthReturn { isSticky: ComputedRef<boolean>; } export default function useCellWidth(props: CellWidthProps): UseCellWidthReturn; export {};