mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
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>
This commit is contained in:
parent
fb754dafed
commit
45aa849073
4
types/secure-json-parse/index.d.ts
vendored
4
types/secure-json-parse/index.d.ts
vendored
@ -1,12 +1,14 @@
|
||||
// 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";
|
||||
protoAction?: "error" | "remove" | "ignore";
|
||||
constructorAction?: "error" | "remove";
|
||||
}
|
||||
|
||||
export function parse(input: string, reviver?: Reviver, options?: ParseOptions): any;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user