UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

7 lines (5 loc) 200 B
import { ICluster } from './ICluster'; export interface IArtifactExtractor { extractArtifacts: (cluster: ICluster) => string[]; removeArtifact: (cluster: ICluster, artifactId: string) => void; }