import type { AtomicHub } from "@effect/core/io/Hub/operations/_internal/AtomicHub" /** * Unsafely publishes the specified values to a hub. */ export function unsafePublishAll(hub: AtomicHub, as: Collection): Chunk { return hub.publishAll(as) }