You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
autoflow-web-console/src/components/models/management/WorkflowStep.ts

22 lines
438 B

export type StepStatus = "Running" | "Success" | "Fail";
export interface WorkflowStep {
projectId: number;
stepName: string;
status?: StepStatus;
pipelineId?: number;
startTime?: string;
endTime?: string;
logPath?: string;
version?: string;
files?: Array<{
refType?: "workflow_step";
originalName: string;
storageName: string;
contentType?: string;
size?: number;
storagePath: string;
}>;
}