// ets_tracing: off import type * as HKT from "../HKT/index.js" export interface Reduce extends HKT.Base { readonly _Reduce: "Reduce" readonly reduce: ( b: B, f: (b: B, a: A) => B ) => (fa: HKT.Kind) => B }