import { HKT } from "@tsplus/stdlib/prelude/HKT"; import { Either } from "@tsplus/stdlib/data/Either/definition"; /** * @tsplus type PartitionMapWithIndex */ export interface PartitionMapWithIndex extends HKT.Typeclass { readonly Law: { readonly PartitionMapWithIndex: "PartitionMapWithIndex"; }; readonly partitionMapWithIndex: (f: (k: K, a: A) => Either) => (fa: HKT.Kind) => readonly [HKT.Kind, HKT.Kind]; } //# sourceMappingURL=PartitionMapWithIndex.d.ts.map