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
}
