void-cmd
Version:
AI-powered CLI tool that converts natural language to shell commands using Cerebras API
12 lines (11 loc) • 347 B
TypeScript
import { Command, CommandOptions } from '../types';
export declare class UpdateCommand implements Command {
name: string;
description: string;
execute(options: CommandOptions): Promise<void>;
private getCurrentVersion;
private getLatestVersion;
private compareVersions;
private performUpdate;
private runCommand;
}