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