Skip to content

Instantly share code, notes, and snippets.

@RodrigoNovais
Last active December 26, 2021 23:24
Show Gist options
  • Save RodrigoNovais/d1042b57288a87c510814013d22c3345 to your computer and use it in GitHub Desktop.
Save RodrigoNovais/d1042b57288a87c510814013d22c3345 to your computer and use it in GitHub Desktop.
type RequireOnlyOne<T, Keys extends keyof T = keyof T> =
Pick<T, Exclude<keyof T, Keys>>
& {
[K in Keys]-?:
Required<Pick<T, K>>
& Partial<Record<Exclude<Keys, K>, undefined>>
}[Keys]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment