import { HKT } from "@tsplus/stdlib/prelude/HKT"; /** * @tsplus type Reduce */ export interface Reduce extends HKT.Typeclass { readonly Law: { readonly Reduce: "Reduce"; }; readonly reduce: (b: B, f: (b: B, a: A) => B) => (fa: HKT.Kind) => B; } //# sourceMappingURL=Reduce.d.ts.map