dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
17 lines (16 loc) • 454 B
TypeScript
import { IGitSource, IGithubSource, IImageSource, IAppDeploymentEnv } from ".";
export interface IAppDeploymentJob {
build_command: string;
dockerfile_path: string;
environment_slug: string;
envs: IAppDeploymentEnv[];
git: IGitSource;
github: IGithubSource;
image: IImageSource;
instance_count: number;
instance_size_slug: string;
kind: string;
name: string;
run_command: string;
source_dir: string;
}