export function deepClone(obj: T) { return JSON.parse(JSON.stringify(obj)); }