import { HKT } from "@tsplus/stdlib/prelude/HKT"; /** * @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; } //# sourceMappingURL=CovariantWithIndex.d.ts.map