UNPKG

aico-pack

Version:

A tool to pack repository contents to single file for AI consumption

8 lines 363 B
/** * Read a file and return its text content * @param filePath Path to the file * @param maxFileSize Maximum file size in bytes * @returns File content as string, or null if the file is binary or exceeds size limit */ export declare const readRawFile: (filePath: string, maxFileSize: number) => Promise<string | null>; //# sourceMappingURL=fileRead.d.ts.map