mirror of https://github.com/MaxLeiter/Drift
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
703 B
TypeScript
24 lines
703 B
TypeScript
declare function stringify(
|
|
value: any,
|
|
replacer?: (key: string, value: any) => any,
|
|
space?: string | number,
|
|
options?: { depthLimit: number | undefined; edgesLimit: number | undefined }
|
|
): string;
|
|
|
|
declare namespace stringify {
|
|
export function stable(
|
|
value: any,
|
|
replacer?: (key: string, value: any) => any,
|
|
space?: string | number,
|
|
options?: { depthLimit: number | undefined; edgesLimit: number | undefined }
|
|
): string;
|
|
export function stableStringify(
|
|
value: any,
|
|
replacer?: (key: string, value: any) => any,
|
|
space?: string | number,
|
|
options?: { depthLimit: number | undefined; edgesLimit: number | undefined }
|
|
): string;
|
|
}
|
|
|
|
export default stringify;
|