interface.d.ts 350 B

123456789101112131415
  1. export type Status = 'error' | 'process' | 'finish' | 'wait';
  2. export type StepIconRender = (info: {
  3. index: number;
  4. status: Status;
  5. title: any;
  6. description: any;
  7. node: any;
  8. }) => any;
  9. export type ProgressDotRender = (info: {
  10. iconDot: any;
  11. index: number;
  12. status: Status;
  13. title: any;
  14. description: any;
  15. }) => any;