UNPKG

woaru

Version:

Universal Project Setup Autopilot - Analyze and automatically configure development tools for ANY programming language

29 lines 873 B
import { Command } from 'commander'; /** * Command mapping for i18n translation keys */ export declare const COMMAND_I18N_KEYS: Record<string, { description: string; purpose: string; }>; /** * Get all commands from the program recursively */ export declare function getAllCommands(program: Command): Command[]; /** * Get the command path (e.g., "review git" for nested commands) */ export declare function getCommandPath(cmd: Command): string; /** * Get translated description for a command */ export declare function getTranslatedDescription(cmd: Command): string; /** * Get translated purpose for a command */ export declare function getTranslatedPurpose(cmd: Command): string; /** * Generate translated commands output */ export declare function generateTranslatedCommandsOutput(program: Command): string; //# sourceMappingURL=commandHelpers.d.ts.map