import { Duration } from "@tsplus/stdlib/data/Duration"; import { Schedule } from "@effect/core/io/Schedule/definition"; /** * A schedule that always recurs, but will repeat on a linear time interval, * given by `base * n` where `n` is the number of repetitions so far. Returns * the current duration between recurrences. * @tsplus static effect/core/io/Schedule.Ops linear * @tsplus location "@effect/core/io/Schedule/operations/linear" */ export declare function linear(base: Duration): Schedule; //# sourceMappingURL=linear.d.ts.map