import type { Falsy } from './truthy-falsy.js'; /** Logical XOR */ export type Xor = A extends Falsy ? B extends Falsy ? False : True : B extends Falsy ? True : False; //# sourceMappingURL=Xor.d.ts.map