Files

6 lines
199 B
TypeScript
Raw Permalink Normal View History

2025-07-26 16:40:29 +08:00
/**
* Decycles objects with circular references.
* This is used to print cyclic structures in development environment only.
*/
export declare function decycle(obj: any, seen?: Set<unknown>): any;