maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
15 lines (14 loc) • 396 B
TypeScript
export interface MazDatePickerRangeValue {
start: string;
end: string;
}
export type MazDatePickerPartialRangeValue = Partial<MazDatePickerRangeValue>;
export type MazDatePickerValue = string | undefined | MazDatePickerPartialRangeValue;
export interface MazDatePickerShortcut {
identifier: string;
label: string;
value: {
start: string;
end: string;
};
}