-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Labels
Description
export function readFileSync(filename: string, options: ReadFileOptions): Buffer;
and
export function readFile(filename: string, options: ReadFileOptions, callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void): void;
should be:
export function readFileSync(filename: string, options: ReadFileOptions | null): Buffer;
and
export function readFile(filename: string, options: ReadFileOptions | null, callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void): void;
I can create a PR if desired.