Created
September 28, 2023 21:05
-
-
Save matthewsimo/2e038da56f05cd173092e21ecf53d0a4 to your computer and use it in GitHub Desktop.
Optional Type Util TS
This file contains hidden or 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 Optional<T, U extends keyof T> = Partial<Pick<T, U>> & Omit<T, U>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment