UNPKG

vuestic-ui

Version:
8 lines (7 loc) 344 B
export type DateInputDate = Date | string | number; export type DateInputRange<T> = { start?: T | null; end?: T | null; }; export type DateInputValue = Date | Date[] | DateInputRange<Date> | undefined | null; export type DateInputModelValue = DateInputDate | DateInputDate[] | DateInputRange<DateInputDate> | undefined | null | string;