mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-11 11:21:04 +02:00
6 lines
215 B
TypeScript
6 lines
215 B
TypeScript
import { ReplacerFn } from './fast-safe-stringify';
|
|
/**
|
|
* Safely stringifies a Javascript native value
|
|
*/
|
|
export declare function safeStringify(value: any, replacer?: ReplacerFn, space?: string | number): string;
|