export type PickRenameMulti = { [P in keyof T as P extends keyof R ? R[P] : P]: T[P]; }; export type ExtendedProperties = { [P in keyof T]: T[P]; };