refakts
Version:
TypeScript refactoring tool built for AI coding agents to perform precise refactoring operations via command line instead of requiring complete code regeneration.
19 lines • 402 B
TypeScript
export interface SelectMatch {
line: number;
column: number;
endLine: number;
endColumn: number;
text: string;
fullLine: string;
}
export interface SelectResult {
location: string;
content?: string;
context?: string;
}
export interface DefinitionRange {
startLine: number;
endLine: number;
content: string;
}
//# sourceMappingURL=selection-types.d.ts.map