Created
September 19, 2018 01:34
-
-
Save realyze/537342b47ec1da642748933302651caf to your computer and use it in GitHub Desktop.
Make only some field optional
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
type MakeOptional<T, K extends keyof T> = | |
{[P in keyof Pick<T, K>]+?: T[P]} & | |
{[P in keyof Pick<T, Exclude<keyof T, K>>]: T[P]}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment