export type Binary1bitXOr = Binary1bitXorParser; export type Binary1bitXorParser = X extends "1" ? (Y extends "1" ? "0" : "1") : Y extends "1" ? "1" : "0";