//#region src/utils/serialize.d.ts type StandardReplacer = (key: string, value: any) => any; type CircularReplacer = (key: string, value: any, referenceKey: string) => any; /** * Stringifier that handles circular values * * Forked from https://github.com/planttheidea/fast-stringify * * @param value to stringify * @param [replacer] a custom replacer function for handling standard values * @param [indent] the number of spaces to indent the output by * @param [circularReplacer] a custom replacer function for handling circular values * @returns the stringified output */ declare function serialize(value: any, replacer?: StandardReplacer | null | undefined, indent?: number | null | undefined, circularReplacer?: CircularReplacer | null | undefined): string; //#endregion export { serialize }; //# sourceMappingURL=serialize.d.ts.map