//#region src/common/data/json.d.ts declare function jsonStringifySorted(obj: any, indent?: number | undefined): string; type JsonEntryProcessor = (key: string, value: any) => any; /** * Similar to JSON.stringify but can handle circular references. * NOT SORTED! * From https://github.com/moll/json-stringify-safe/blob/master/stringify.js * License ISC */ declare function jsonStringifySafe(obj: any, replacer?: JsonEntryProcessor | null | undefined, spaces?: string | number | null, cycleReplacer?: JsonEntryProcessor): string; declare const jsonStringify: typeof jsonStringifySafe; declare function jsonParse(val: string): any; //#endregion export { jsonStringifySorted as a, jsonStringifySafe as i, jsonParse as n, jsonStringify as r, JsonEntryProcessor as t }; //# sourceMappingURL=json-bv4Fd_xj.d.mts.map