@cto.ai/ops
Version:
💻 CTO.ai - The CLI built for Teams 🚀
13 lines (12 loc) • 362 B
TypeScript
import Command, { flags } from './../base';
import { Config } from './../types';
export default class Stop extends Command {
static description: string;
static flags: flags.Input<any>;
static args: {
name: string;
description: string;
}[];
stopOp: (runId: string, config: Config) => Promise<void>;
run(): Promise<void>;
}