index.d.ts 419 B

12345678
  1. declare function stringify(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string;
  2. declare namespace stringify {
  3. export function stable(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string;
  4. export function stableStringify(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string;
  5. }
  6. export default stringify;