Skip to content

Instantly share code, notes, and snippets.

@realiarthur
Created November 27, 2021 10:52
Show Gist options
  • Save realiarthur/aefa96f1ac75adaf8d753a9442960818 to your computer and use it in GitHub Desktop.
Save realiarthur/aefa96f1ac75adaf8d753a9442960818 to your computer and use it in GitHub Desktop.
type Nullable<T, NullKeys = false> = NullKeys extends true ? { [key in keyof T]: null | T[key] } : T | null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment