mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-17 16:42:31 +03:00
f111440e00
* feat: wip impersonate user * feat: add ability to impersonate an user * fix: remove console.log * fix: unused import
6 lines
100 B
TypeScript
6 lines
100 B
TypeScript
type DeepPartial<T> = T extends object
|
|
? {
|
|
[P in keyof T]?: DeepPartial<T[P]>;
|
|
}
|
|
: T;
|