/** * Returns an object type with a single property. */ export type Property = { [P in K]: { [Q in P]: V }; }[K];