17 lines
331 B
TypeScript
17 lines
331 B
TypeScript
|
export type Status = 'error' | 'process' | 'finish' | 'wait';
|
||
|
export type StepIconRender = (info: {
|
||
|
index: number;
|
||
|
status: Status;
|
||
|
title: any;
|
||
|
description: any;
|
||
|
node: any;
|
||
|
}) => any;
|
||
|
|
||
|
export type ProgressDotRender = (info: {
|
||
|
iconDot: any;
|
||
|
index: number;
|
||
|
status: Status;
|
||
|
title: any;
|
||
|
description: any;
|
||
|
}) => any;
|