UNPKG

tdesign-miniprogram

Version:
20 lines (19 loc) 432 B
export interface TdStepItemProps { content?: { type: StringConstructor; value?: string; }; icon?: { type: StringConstructor; value?: string; }; status?: { type: StringConstructor; value?: StepStatus; }; title?: { type: StringConstructor; value?: string; }; } export declare type StepStatus = 'default' | 'process' | 'finish' | 'error';