API/api.medcify.app/node_modules/snyk/dist/lib/json.d.ts

7 lines
364 B
TypeScript
Raw Normal View History

2022-09-26 06:11:44 +00:00
/**
* Attempt to json-stringify an object which is potentially very large and might exceed the string limit.
* If it does exceed the string limit, try again without pretty-print to hopefully come out below the string limit.
* @param obj the object from which you want to get a JSON string
*/
export declare function jsonStringifyLargeObject(obj: any): string;