You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
663 B

import type { ExtractPropTypes } from 'vue';
export declare const calendarProps: {
readonly modelValue: import("element-plus/es/utils/props").BuildPropReturn<DateConstructor, unknown, unknown, unknown, unknown>;
readonly range: import("element-plus/es/utils/props").BuildPropReturn<import("element-plus/es/utils/props").PropWrapper<[Date, Date]>, unknown, unknown, unknown, [Date, Date]>;
};
export declare type CalendarProps = ExtractPropTypes<typeof calendarProps>;
export declare const calendarEmits: {
"update:modelValue": (value: Date) => boolean;
input: (value: Date) => boolean;
};
export declare type CalendarEmits = typeof calendarEmits;