export function deepCopy(data: T): T { return JSON.parse(JSON.stringify(data)); }