Last active
March 19, 2025 00:03
-
-
Save forivall/26e1af05175b0c1c95d0b3d98f2a1121 to your computer and use it in GitHub Desktop.
ExclusifyUnion improved goto definiion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { UnionToIntersection } from 'type-fest'; | |
export type ExclusifyUnion<T> = ExclusifyUnion_<T, T>; | |
type ExclusifyUnion_<T, U> = T extends never | |
? never | |
: T & EmptyDifference<T, Exclude<U, T>>; // eslint-disable-line @typescript-eslint/sort-type-constituents | |
type EmptyDifference<T, U> = Omit< | |
UnionToIntersection<T extends never ? never : { [K in keyof U]?: never }>, | |
keyof T | |
>; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment