@morodomi/ait3
Version:
AIT³ Development Platform - AI + Ticket + Test + Tool driven development methodology
10 lines (9 loc) • 309 B
TypeScript
import { Command } from 'commander';
import type { CLIResult } from '../../common/types.js';
interface InstallCommandArgs {
name?: string;
force?: boolean;
}
export declare function installCommand(args: InstallCommandArgs): Promise<CLIResult>;
export declare const commandCommand: Command;
export {};