import Docker from '@cto.ai/dockerode'; import { Config, OpCommand } from '.'; export type RunCommandArgs = { args: { [key: string]: string; }; flags: { build?: boolean; batch?: boolean; help?: boolean; nocache?: boolean; }; opParams: string[]; }; export type RunPipeline = { config: Config; isPublished: boolean; op: OpCommand; options: Docker.ContainerCreateOptions; parsedArgs: RunCommandArgs; nocache?: boolean; };