UNPKG

maz-ui

Version:

A standalone components library for Vue.Js 3 & Nuxt.Js 3

16 lines (15 loc) 369 B
export type SimpleValue = string | undefined; export interface RangeValue { start: string; end: string; } export type PartialRangeValue = Partial<RangeValue>; export type PickerValue = SimpleValue | PartialRangeValue; export interface PickerShortcut { identifier: string; label: string; value: { start: string; end: string; }; }