Created
December 29, 2020 18:20
-
-
Save Jtosbornex/1f2160e5abe723ccca2ecaf3f9ac7e45 to your computer and use it in GitHub Desktop.
Typescirpt PickOne Property from Object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type PickOne<T> = { [P in keyof T]: Record<P, T[P]> & Partial<Record<Exclude<keyof T, P>, undefined>> }[keyof T]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment