UNPKG

tdesign-miniprogram

Version:
24 lines (23 loc) 510 B
export interface TdStepItemProps { content?: { type: StringConstructor; value?: string; }; extra?: { 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';