UNPKG

@atomist/spinnaker

Version:

TypeScript model for Atomist Spinnaker Commands

16 lines (9 loc) 343 B
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 }