UNPKG

vue-devui

Version:

DevUI components based on Vite and Vue3

19 lines (18 loc) 558 B
import type { PropType, ExtractPropTypes } from 'vue'; export type IStepStatus = 'wait' | 'process' | 'finish' | 'success' | 'error'; export declare const stepProps: { readonly title: { readonly type: StringConstructor; readonly required: true; }; readonly description: { readonly type: StringConstructor; }; readonly icon: { readonly type: StringConstructor; }; readonly status: { readonly type: PropType<IStepStatus>; }; }; export type StepProps = ExtractPropTypes<typeof stepProps>;