@cto.ai/ops
Version:
💻 CTO.ai Ops - The CLI built for Teams 🚀
12 lines (11 loc) • 369 B
TypeScript
import { OpTypes } from '../constants/opConfig';
export interface InitParams {
commandName: string | undefined;
commandDescription: string | undefined;
commandVersion: string | undefined;
workflowName: string | undefined;
workflowDescription: string | undefined;
workflowVersion: string | undefined;
templates: OpTypes[];
help?: void;
}