UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

18 lines (17 loc) 498 B
import { IAppVariableDefinition, IGithubSource, IGitSource, IImageSource } from "."; export interface IAppJobSpec { build_command?: string; dockerfile_path?: string; environment_slug?: string; envs?: IAppVariableDefinition[]; git?: IGitSource; github?: IGithubSource; gitlab?: IGithubSource; image?: IImageSource; instance_count?: number; instance_size_slug?: string; kind?: string; name: string; run_command?: string; source_dir?: string; }