maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
17 lines (16 loc) • 814 B
TypeScript
import { MazColor } from '../types';
import { MazDatePickerShortcut, MazDatePickerValue } from './types';
type __VLS_Props = {
color: MazColor;
modelValue: MazDatePickerValue;
shortcuts: MazDatePickerShortcut[] | false;
double: boolean;
shortcut: MazDatePickerShortcut['identifier'] | undefined;
disabled: boolean;
};
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:model-value": (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
export default _default;