Created
May 9, 2025 11:34
-
-
Save Michota/6373dee2fd8fbfd032175fa3cc7535d9 to your computer and use it in GitHub Desktop.
MakeNonNullable
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
type MakeNonNullable<T, K extends keyof T> = Omit<T, K> & { [P in K]-?: NonNullable<T[P]> }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment