@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
16 lines (14 loc) • 325 B
text/typescript
export interface IParameterDefinitionList {
defaultValue: string;
description?: string;
name: string;
}
export interface IJobConfig {
buildable: boolean;
concurrentBuild: boolean;
description: string;
displayName: string;
name: string;
parameterDefinitionList: IParameterDefinitionList[];
url: string;
}