UNPKG

@cto.ai/ops-rc

Version:

💻 CTO.ai Ops - The CLI built for Teams 🚀

21 lines (20 loc) • 458 B
import Docker from 'dockerode'; import { Config, OpCommand } from '.'; export declare type RunCommandArgs = { args: { nameOrPath: string; }; flags: { build?: boolean; batch?: boolean; help?: boolean; }; opParams: string[]; }; export declare type RunPipeline = { config: Config; isPublished: boolean; op: OpCommand; options: Docker.ContainerCreateOptions; parsedArgs: RunCommandArgs; };