Skip to content

Instantly share code, notes, and snippets.

@Michota
Created May 9, 2025 11:34
Show Gist options
  • Save Michota/6373dee2fd8fbfd032175fa3cc7535d9 to your computer and use it in GitHub Desktop.
Save Michota/6373dee2fd8fbfd032175fa3cc7535d9 to your computer and use it in GitHub Desktop.
MakeNonNullable
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