import type { Binary1bitAndParser } from "./binary1bitAnd"; import type { Binary1bitXorParser } from "./binary1bitXor"; export type BinaryHalfAdder = BinaryHalfAdderParser; export type BinaryHalfAdderParser = C extends "" ? BinaryHalfAdderParser> : `${C}${Binary1bitXorParser}`;