zview-plus
Version:
基于 Vue3 的 UI 组件库
39 lines (38 loc) • 901 B
TypeScript
import { ExtractPropTypes } from "vue";
export declare const TimePickerProps: {
modelValue: (StringConstructor | ArrayConstructor)[];
placeholder: {
type: StringConstructor;
default: string;
};
type: {
type: StringConstructor;
values: string[];
default: string;
};
format: {
type: StringConstructor;
default: string;
};
clearable: {
type: BooleanConstructor;
default: boolean;
};
confirm: {
type: BooleanConstructor;
default: boolean;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
separator: {
type: StringConstructor;
default: string;
};
readonly: {
type: BooleanConstructor;
default: boolean;
};
};
export declare type TimePickerProps = ExtractPropTypes<typeof TimePickerProps>;