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.

10 lines 258 B
#!/usr/bin/env node interface CommentIssue { file: string; line: number; text: string; type: 'single' | 'multi'; } export declare function findComments(srcDir: string): CommentIssue[]; export {}; //# sourceMappingURL=comment-detector.d.ts.map