/** * creates a type which allows specifying one, and only one, key of an object * * ref: * - https://stackoverflow.com/a/56933182/3068233 */ export type PickOne = { [P in keyof T]: Record & Partial, undefined>>; }[keyof T];