e317619d30b19391ed7f72a49318a21291643c8ce2a7ea9d58f06d895824661ff89cc39abb8d48e8113694270c5dba61b2a28b2b5e7bab865035d707fc63c2 295 B

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