/** * Returns a schedule that repeats one time, producing the specified constant * value. * * @tsplus static effect/core/io/Schedule.Ops sync */ export function sync(a: LazyArg): Schedule { return Schedule.repeatForever.map(a) }