/** * Awaits on all fibers to be completed, successfully or not. * * @tsplus static effect/core/io/Fiber.Ops awaitAll */ export function awaitAll( fibers: Collection> ): Effect { return Fiber.collectAll(fibers).await.unit }