/** * @tsplus type ReduceRightWithIndex */ export interface ReduceRightWithIndex extends HKT.Typeclass { readonly Law: { ReduceRightWithIndex: "ReduceRightWithIndex" } readonly reduceRightWithIndex: ReduceRightWithIndex.Fn } export declare namespace ReduceRightWithIndex { export interface Fn { (b: B, f: (k: K, a: A, b: B) => B): (fa: HKT.Kind) => B } }