This commit is contained in:
2026-05-17 12:43:53 -07:00
commit 7c8def0aaa
7507 changed files with 1419399 additions and 0 deletions

6
dist/tools/file-api.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
export declare function readFile(workspaceRoot: string, relPath: string): Promise<unknown>;
export declare function writeFile(workspaceRoot: string, relPath: string, content: string): Promise<unknown>;
export declare function replaceInFile(workspaceRoot: string, relPath: string, oldContent: string, newContent: string): Promise<unknown>;
export declare function listDirectory(workspaceRoot: string, relPath: string): Promise<unknown>;
export declare function findFiles(workspaceRoot: string, pattern: string): Promise<unknown>;
export declare function searchCode(workspaceRoot: string, query: string, fileExtensions?: string[]): Promise<unknown>;