UNPKG

vue-devui

Version:

DevUI components based on Vite and Vue3

37 lines (36 loc) 815 B
import { ExtractPropTypes } from 'vue'; export declare const timePopupProps: { showPopup: { type: BooleanConstructor; default: boolean; }; popupTop: { type: NumberConstructor; default: number; }; popupLeft: { type: NumberConstructor; default: number; }; popupWidth: { type: NumberConstructor; default: number; }; popupFormat: { type: StringConstructor; default: string; }; minTime: { type: StringConstructor; default: string; }; maxTime: { type: StringConstructor; default: string; }; bindData: { type: StringConstructor; default: string; }; }; export declare type TimePopupProps = ExtractPropTypes<typeof timePopupProps>;