@atomist/spinnaker
Version:
TypeScript model for Atomist Spinnaker Commands
16 lines (9 loc) • 343 B
text/typescript
import { Services } from '@atomist/rug/model/Core'
export interface SpinnakerService extends Services {
continueManualJudgment(url: string, pipelineId: string, stageId: string): Status
stopManualJudgment(url: string, pipelineId: string, stageId: string): Status
}
export interface Status {
success(): boolean
message(): string
}