export type Binary1bitXnor = Binary1bitXnorParser; export type Binary1bitXnorParser = X extends "1" ? (Y extends "1" ? "1" : "0") : Y extends "1" ? "0" : "1";