import { Schedule } from "@effect/core/io/Schedule/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Repeats the entire stream using the specified schedule. The stream will * execute normally, and then repeat again according to the provided schedule. * @tsplus static effect/core/stream/Stream.Aspects repeat * @tsplus pipeable effect/core/stream/Stream repeat * @tsplus location "@effect/core/stream/Stream/operations/repeat" */ export declare function repeatNow(schedule: Schedule): (self: import("../definition").Stream) => import("../definition").Stream; /** * Repeats the provided value infinitely. * @tsplus static effect/core/stream/Stream.Ops repeat * @tsplus location "@effect/core/stream/Stream/operations/repeat" */ export declare function repeat(a: A): Stream; //# sourceMappingURL=repeat.d.ts.map