decycle.d.ts 199 B

12345
  1. /**
  2. * Decycles objects with circular references.
  3. * This is used to print cyclic structures in development environment only.
  4. */
  5. export declare function decycle(obj: any, seen?: Set<unknown>): any;