interfaces/ts/data/deployment.ts

8 lines
216 B
TypeScript
Raw Normal View History

2024-02-07 11:29:23 +00:00
import * as plugins from '../plugins.js';
export interface IDeployment {
affectedServiceIds: string[];
usedImageId: string;
deploymentLog: string[];
status: 'scheduled' | 'running' | 'deployed' | 'failed';
}