mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-30 12:40:10 +00:00
7 lines
306 B
TypeScript
7 lines
306 B
TypeScript
declare function list(path: string): Promise<string[]>;
|
|
declare function listRecursively(p: string, options?: {
|
|
excludeDirectories?: boolean;
|
|
}): Promise<string[]>;
|
|
declare function writeFileSyncIfChanged(path: string, content: string): void;
|
|
|
|
export { list, listRecursively, writeFileSyncIfChanged };
|