type.d.ts 510 B

1234567891011121314151617181920212223
  1. export interface TdStepItemProps {
  2. content?: {
  3. type: StringConstructor;
  4. value?: string;
  5. };
  6. extra?: {
  7. type: StringConstructor;
  8. value?: string;
  9. };
  10. icon?: {
  11. type: StringConstructor;
  12. value?: string;
  13. };
  14. status?: {
  15. type: StringConstructor;
  16. value?: StepStatus;
  17. };
  18. title?: {
  19. type: StringConstructor;
  20. value?: string;
  21. };
  22. }
  23. export declare type StepStatus = 'default' | 'process' | 'finish' | 'error';