stringifyAll.d.ts 339 B

12345678910111213141516
  1. declare namespace stringifyAll {
  2. function parse(str: string): any;
  3. }
  4. declare function stringifyAll(
  5. obj: any,
  6. options?: {
  7. unenumerable?: boolean;
  8. symbol?: boolean;
  9. accessGetter?: boolean;
  10. timeout?: number;
  11. depth?: number;
  12. ignore?: any[];
  13. }
  14. ): string;
  15. export = stringifyAll;