import { Equivalence } from "@tsplus/stdlib/prelude/Equivalence/definition"; import { TArray } from "@effect/core/stm/TArray/definition"; import { STM } from "@effect/core/stm/STM/definition/base"; /** * Get the first index of a specific value in the array, starting at a * specific index, or -1 if it does not occur. * @tsplus static effect/core/stm/TArray.Aspects indexOfFrom * @tsplus pipeable effect/core/stm/TArray indexOfFrom * @tsplus location "@effect/core/stm/TArray/operations/indexOfFrom" */ export declare function indexOfFrom_(equivalence: Equivalence, value: A, from: number): (self: TArray) => STM; //# sourceMappingURL=indexOfFrom.d.ts.map