mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 13:32:07 +07:00
6 lines
199 B
TypeScript
6 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;
|