blob: e309a25530bb587b6a9cca917f473f3aaf6db5fa [file] [log] [blame]
// DO NOT EDIT. This file is automatically generated.
export interface RunProperties {
local: boolean;
swarmingBot?: string;
swarmingServer?: string;
swarmingTask?: string;
}
export interface StepData {
type: DataType;
data: any;
msgIndex: number;
}
export interface StepDisplay {
result?: StepResult;
errors?: string[];
started?: string;
finished?: string;
data?: StepData[];
steps?: StepDisplay[];
id?: string;
name?: string;
isInfra?: boolean;
environment?: string[];
parent?: string;
}
export interface TaskDriverRunDisplay {
id: string;
properties: RunProperties | null;
result?: StepResult;
errors?: string[];
started?: string;
finished?: string;
data?: StepData[];
steps?: StepDisplay[];
name?: string;
isInfra?: boolean;
environment?: string[];
parent?: string;
}
export type StepResult = string;
export type DataType = string;