mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
5 lines
199 B
TypeScript
5 lines
199 B
TypeScript
/**
|
|
* 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;
|