Skip to content

Instantly share code, notes, and snippets.

@fostyfost
Created June 25, 2024 15:34
Show Gist options
  • Save fostyfost/5b31c4d3f1387ddcac4c70705bf48e16 to your computer and use it in GitHub Desktop.
Save fostyfost/5b31c4d3f1387ddcac4c70705bf48e16 to your computer and use it in GitHub Desktop.
Distributive Pick
type DistributivePick<T, K extends keyof T> = T extends any ? Pick<T, K> : never
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment