UNPKG

@cto.ai/ops-rc

Version:

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

15 lines (14 loc) • 410 B
import Command from './../base'; import { Config } from './../types'; export default class Stop extends Command { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; }; static args: { name: string; description: string; }[]; stopOp: (runId: string, config: Config) => Promise<void>; run(): Promise<void>; }