Skip to content

Instantly share code, notes, and snippets.

@RodrigoNovais
Last active May 13, 2021 15:07
Show Gist options
  • Save RodrigoNovais/7df0f75dff10d46dc327412812a1b5ef to your computer and use it in GitHub Desktop.
Save RodrigoNovais/7df0f75dff10d46dc327412812a1b5ef to your computer and use it in GitHub Desktop.
type RequireAtLeastOne<T, Keys extends keyof T = keyof T> =
Pick<T, Exclude<keyof T, Keys>>
& {
[K in Keys]-?: Required<Pick<T, K>> & Partial<Pick<T, Exclude<Keys, K>>>
}[Keys]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment