readFile.d.ts 219 B

1234
  1. /// <reference types="node" />
  2. import { PathOrFileDescriptor } from "fs";
  3. import { callbackFn } from "./types";
  4. export declare function readFile<T = unknown>(aFile: PathOrFileDescriptor, callback: callbackFn<T>): void;