@xec-sh/cli
Version:
Xec: The Universal Shell for TypeScript
17 lines (16 loc) • 547 B
TypeScript
import { Command } from 'commander';
import { ConfigAwareCommand } from '../utils/command-base.js';
export declare class InCommand extends ConfigAwareCommand {
constructor();
protected getCommandConfigKey(): string;
execute(args: any[]): Promise<void>;
private executeCommand;
private executeSingle;
private executeParallel;
private executeTask;
private executeScript;
private startRepl;
private executeInteractive;
private runInteractiveMode;
}
export default function command(program: Command): void;