import { HKT } from "@tsplus/stdlib/prelude/HKT"; import { ReduceRightWithIndex } from "@tsplus/stdlib/prelude/ReduceRightWithIndex"; import { ReduceWithIndex } from "@tsplus/stdlib/prelude/ReduceWithIndex"; import { FoldMapWithIndex } from "@tsplus/stdlib/prelude/FoldMapWithIndex"; /** * @tsplus type FoldableWithIndex */ export type FoldableWithIndex = ReduceRightWithIndex & ReduceWithIndex & FoldMapWithIndex; //# sourceMappingURL=FoldableWithIndex.d.ts.map