export type Binary1bitAnd = Binary1bitAndParser; export type Binary1bitAndParser = X extends "1" ? (Y extends "1" ? "1" : "0") : "0";