* 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 transf
(text: string, reviver?: (this: any, key: string, value: any) => any)
| 14 | * If a member contains nested objects, the nested objects are transformed before the parent object is. |
| 15 | */ |
| 16 | parse(text: string, reviver?: (this: any, key: string, value: any) => any): unknown |
| 17 | } |
| 18 | |
| 19 | interface Body { |
no outgoing calls