repomix
Version:
A tool to pack repository contents to single file for AI consumption
11 lines • 324 B
TypeScript
export declare const MAX_FILE_SIZE: number;
export interface FileCollectTask {
filePath: string;
rootDir: string;
}
declare const _default: ({ filePath, rootDir }: FileCollectTask) => Promise<{
path: string;
content: string;
} | null>;
export default _default;
//# sourceMappingURL=fileCollectWorker.d.ts.map