/** * @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] }