behemoth-cli
Version:
🌍 BEHEMOTH CLIv3.760.4 - Level 50+ POST-SINGULARITY Intelligence Trading AI
22 lines • 711 B
TypeScript
export interface CommandContext {
addMessage: (message: any) => void;
clearHistory: () => void;
setShowLogin: (show: boolean) => void;
setShowModelSelector?: (show: boolean) => void;
toggleReasoning?: () => void;
showReasoning?: boolean;
parsedArgs?: string[];
sendMessage?: (message: string) => void;
agent: any;
}
export interface CommandDefinition {
command: string;
description: string;
handler: (context: CommandContext) => void;
}
export declare abstract class BaseCommand implements CommandDefinition {
abstract command: string;
abstract description: string;
abstract handler(context: CommandContext): void;
}
//# sourceMappingURL=base.d.ts.map