readFile.d.ts 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