/** * Clone an object, fast. Currently only handles JSON-like objects (not class instances) * but could be expanded if needed. * * This is decently faster than `structuredClone` or `JSON.parse(JSON.stringify())` on a * very large object (bump info can be huge in certain repos). https://jsperf.app/rugosa/5 * * @internal Exported for testing (and usage in tests) */ export declare function cloneObject(obj: T): T; export declare function cloneObject(obj: T): T; //# sourceMappingURL=cloneObject.d.ts.map