/** * Runs this effect according to the specified schedule in a new fiber * attached to the current scope. * * @tsplus static effect/core/io/Effect.Aspects scheduleForked * @tsplus pipeable effect/core/io/Effect scheduleForked */ export function scheduleForked(schedule: Schedule) { return (self: Effect): Effect> => self.schedule(schedule).forkScoped }