TXOR
Bun

type

__internal.XOR

type XOR<A, B> = Without<A, B> | Without<B, A>

Referenced types

type Without<A, B> = A & { [K in Exclude<keyof B, keyof A>]: never }