Type alias JsonReadOptions

JsonReadOptions: {
    encoding?: BufferEncoding | null;
    flag?: string;
    fs?: "fs";
    reviver?: ((key, value) => any);
    throws?: boolean;
} | BufferEncoding | null | undefined

Type declaration

  • Optional encoding?: BufferEncoding | null
  • Optional flag?: string
  • Optional fs?: "fs"
  • Optional reviver?: ((key, value) => any)
      • (key, value): any
      • Parameters

        • key: any
        • value: any

        Returns any

  • Optional throws?: boolean

Generated using TypeDoc