/** * @tsplus type CovariantWithIndex */ export interface CovariantWithIndex extends HKT.Typeclass { readonly Law: { readonly CovariantWithIndex: "CovariantWithIndex" } readonly mapWithIndex: ( f: (k: K, a: A) => B ) => (fa: HKT.Kind) => HKT.Kind }