Created
November 15, 2016 02:20
-
-
Save sophistifunk/74b93cbd4215e255458b2a8d6b614c25 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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