frontend/.pnpm-store/v3/files/52/e317619d30b19391ed7f72a49318a21291643c8ce2a7ea9d58f06d895824661ff89cc39abb8d48e8113694270c5dba61b2a28b2b5e7bab865035d707fc63c2

7 lines
295 B
Plaintext

interface Options {
throwNotFound?: boolean;
}
declare function readFile(filepath: string, options?: Options): Promise<string | null>;
declare function readFileSync(filepath: string, options?: Options): string | null;
export { readFile, readFileSync };
//# sourceMappingURL=readFile.d.ts.map