1 // Minimal part of the Node fs API which we depend on.
2 // May be (c) Microsoft licensed under the MIT license, however API's are not generally copyrightable per recent precedent.
4 export type PathLike = string | Buffer | URL;
5 export type PathOrFileDescriptor = PathLike | number;
6 export function readFileSync(
7 path: PathOrFileDescriptor,
9 encoding?: null | undefined;
10 flag?: string | undefined;
14 declare module 'node:fs' {