@types/json-parse-better-errors
Version:
TypeScript definitions for json-parse-better-errors
34 lines (27 loc) • 1.32 kB
Markdown
# Installation
> `npm install --save @types/json-parse-better-errors`
# Summary
This package contains type definitions for json-parse-better-errors (https://github.com/zkat/json-parse-better-errors#readme).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-parse-better-errors.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-parse-better-errors/index.d.ts)
````ts
export = json_parse_better_errors;
/**
* Converts a JavaScript Object Notation (JSON) string into an object.
* @param text A valid JSON string.
* @param reviver A function that transforms the results. This function is called for each member of the object.
* If a member contains nested objects, the nested objects are transformed before the parent object is.
* @param context The number of characters to display in each direction around the position of an error.
*/
declare function json_parse_better_errors(
txt: string,
reviver?: (key: string, value: any) => any,
context?: number,
): any;
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 03:09:37 GMT
* Dependencies: none
# Credits
These definitions were written by [Daniel Rosenwasser](https://github.com/DanielRosenwasser).