refakts
Version:
TypeScript refactoring tool built for AI coding agents to perform precise refactoring operations via command line instead of requiring complete code regeneration.
16 lines • 462 B
TypeScript
export interface CommandOption {
flags: string;
description: string;
}
export interface CommandOptions {
[key: string]: unknown;
}
export interface RefactoringCommand {
readonly name: string;
readonly description: string;
readonly complete: boolean;
execute(_file: string, _options: CommandOptions): Promise<void>;
validateOptions(_options: CommandOptions): void;
getHelpText(): string;
}
//# sourceMappingURL=command.d.ts.map