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.
15 lines
781 B
15 lines
781 B
import type { ExtractPropTypes } from 'vue';
|
|
import type { Dayjs } from 'dayjs';
|
|
export declare const panelTimePickerProps: {
|
|
readonly datetimeRole: StringConstructor;
|
|
readonly parsedValue: {
|
|
readonly type: import("vue").PropType<Dayjs>;
|
|
readonly required: false;
|
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
__epPropKey: true;
|
|
};
|
|
readonly visible: BooleanConstructor;
|
|
readonly actualVisible: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
readonly format: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
};
|
|
export declare type PanelTimePickerProps = ExtractPropTypes<typeof panelTimePickerProps>;
|
|
|