Warp/node_modules/@algolia/autocomplete-shared/dist/esm/decycle.d.ts

6 lines
199 B
TypeScript
Raw Normal View History

2024-01-05 12:14:38 +00: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;