import { Unary } from '../function/unary'; /** * A pair of callbacks to map both arguments of a given function at the same time. * * @since v0.9.0 */ export type BiMap = [Unary, Unary];