You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 419B

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;