import { Unary } from '../function/unary'; /** * A pair of unary callbacks to map both arguments (T1 and T2) of a function into the same type U. * * @since v0.9.0 */ export type BiFold = [Unary, Unary];