nepali-datepicker-vue
Version:
A Vue 3 Nepali Datepicker with TypeScript Support
45 lines (44 loc) • 1.48 kB
TypeScript
export interface NepaliDatePickerProps {
id?: string;
modelValue?: string;
yearSelect?: boolean;
monthSelect?: boolean;
class?: string;
placeholder?: string;
minDate?: string;
maxDate?: string;
inputClass?: string;
clickSelect?: boolean;
updateOnInputChange?: boolean;
autoFormat?: boolean;
miniEnglishDate?: boolean;
highlightSaturday?: boolean;
allowTyping?: boolean;
disabled?: boolean;
}
declare const __VLS_export: import('vue').DefineComponent<NepaliDatePickerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
"update:modelValue": (value: string) => any;
onSelect: (value: string) => any;
}, string, import('vue').PublicProps, Readonly<NepaliDatePickerProps> & Readonly<{
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
onOnSelect?: ((value: string) => any) | undefined;
}>, {
id: string;
modelValue: string;
yearSelect: boolean;
monthSelect: boolean;
class: string;
placeholder: string;
minDate: string;
maxDate: string;
inputClass: string;
clickSelect: boolean;
updateOnInputChange: boolean;
autoFormat: boolean;
miniEnglishDate: boolean;
highlightSaturday: boolean;
allowTyping: boolean;
disabled: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: typeof __VLS_export;
export default _default;