UNPKG

refakts

Version:

TypeScript refactoring tool built for AI coding agents to perform precise refactoring operations via command line instead of requiring complete code regeneration.

13 lines 547 B
import { RefactoringCommand } from '../command'; export declare class NodeFindingCommand implements RefactoringCommand { readonly name = "node-finding"; readonly description = "Find AST nodes in TypeScript files"; readonly complete = true; execute(file: string, options: Record<string, any>): Promise<void>; private executeSearch; private handleExecutionError; validateOptions(options: Record<string, any>): void; getHelpText(): string; private outputResult; } //# sourceMappingURL=node-finding-command.d.ts.map