dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
18 lines (17 loc) • 576 B
TypeScript
import { IAppDeploymentJob, IAppDeploymentProgress, IAppDeploymentService, IAppDeploymentStaticSite, IAppDeploymentWorker, IAppSpec } from ".";
export interface IAppDeployment {
cause: string;
cloned_from: string;
created_at: string;
id: string;
jobs: IAppDeploymentJob[];
phase_last_updated_at: string;
phase: string;
progress: IAppDeploymentProgress;
services: IAppDeploymentService[];
spec: IAppSpec;
static_sites: IAppDeploymentStaticSite[];
tier_slug: string;
updated_at: string;
workers: IAppDeploymentWorker[];
}