/** * @name parseJSON * @description A wrapper for "JSON.parse()"" to support "undefined" value, if fails -> throw an error * @param value - string | null * @returns T | undefined * Author: Pol Gubau Amores */ export declare function parseJSON(value: string | null): T | undefined; export declare function saveParseJson(value: string | null): T | undefined; /** stringify * @param value - T * @returns string | undefined */ export declare function stringify(value: T): string | undefined; export declare const json: { saveParse: typeof saveParseJson; parse: typeof parseJSON; stringify: typeof stringify; }; //# sourceMappingURL=handle-json.d.ts.map