DefinitelyTyped/types/secure-json-parse/index.d.ts
Mike MacCana 45aa849073
secure-json-parse: add missing option (#43578)
Added constructorAction, which was missing from the previous type definition
Make protoAction optional, per URL below.
See https://github.com/fastify/secure-json-parse#readme

Co-authored-by: Mike MacCana <mike@daisie.com>
2020-04-06 12:05:46 -07:00

17 lines
714 B
TypeScript

// Type definitions for secure-json-parse 1.0
// Project: https://github.com/fastify/secure-json-parse#readme
// Definitions by: Sjoerd Diepen <https://github.com/OSjoerdWie>
// Mike MacCana <https://github.com/mikemaccana>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export type Reviver = (this: any, key: string, value: any) => any;
export interface ParseOptions {
protoAction?: "error" | "remove" | "ignore";
constructorAction?: "error" | "remove";
}
export function parse(input: string, reviver?: Reviver, options?: ParseOptions): any;
export function safeParse(input: string, reviver?: Reviver): any;
export function scan(input: any, options?: ParseOptions): void;