/** * Runs this effect according to the specified schedule. * * See `scheduleFrom` for a variant that allows the schedule's decision to * depend on the result of this effect. * * @tsplus static effect/core/io/Effect.Aspects schedule * @tsplus pipeable effect/core/io/Effect schedule */ export function schedule(schedule: Schedule) { return (self: Effect): Effect => self.scheduleFrom(undefined, schedule) }