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