mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
9 lines
419 B
TypeScript
9 lines
419 B
TypeScript
declare function stringify(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string;
|
|
|
|
declare namespace stringify {
|
|
export function stable(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string;
|
|
export function stableStringify(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string;
|
|
}
|
|
|
|
export default stringify;
|