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.
14 lines
994 B
14 lines
994 B
11 months ago
|
import type { ExtractPropTypes } from 'vue';
|
||
|
import type { Dayjs } from 'dayjs';
|
||
|
export declare const dateTableProps: {
|
||
|
readonly selectedDay: import("element-plus/es/utils/props").BuildPropReturn<import("element-plus/es/utils/props").PropWrapper<Dayjs>, unknown, unknown, unknown, unknown>;
|
||
|
readonly range: import("element-plus/es/utils/props").BuildPropReturn<import("element-plus/es/utils/props").PropWrapper<[Dayjs, Dayjs]>, unknown, unknown, unknown, unknown>;
|
||
|
readonly date: import("element-plus/es/utils/props").BuildPropReturn<import("element-plus/es/utils/props").PropWrapper<Dayjs>, unknown, true, unknown, unknown>;
|
||
|
readonly hideHeader: import("element-plus/es/utils/props").BuildPropReturn<BooleanConstructor, unknown, unknown, unknown, unknown>;
|
||
|
};
|
||
|
export declare type DateTableProps = ExtractPropTypes<typeof dateTableProps>;
|
||
|
export declare const dateTableEmits: {
|
||
|
pick: (value: Dayjs) => boolean;
|
||
|
};
|
||
|
export declare type DateTableEmits = typeof dateTableEmits;
|