Skip to content

Instantly share code, notes, and snippets.

@sophistifunk
Created November 15, 2016 02:20
Show Gist options
  • Save sophistifunk/74b93cbd4215e255458b2a8d6b614c25 to your computer and use it in GitHub Desktop.
Save sophistifunk/74b93cbd4215e255458b2a8d6b614c25 to your computer and use it in GitHub Desktop.
// Pipeline
export type PipelineInfo = {
pipelineMetadata: any
}
// Stages
export type StageInfo = {
name: string,
uid: string,
pipelineMetadata: any
};
// Steps
export type StepInfo = {
name: string,
label: string,
uid: string,
data: any
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment