import { concreteTake } from "@effect/core/stream/Take/operations/_internal/TakeInternal" /** * Transforms `Take` to an `Effect, Chunk>`. * * @tsplus getter effect/core/stream/Take done */ export function done( self: Take ): Effect, Chunk> { concreteTake(self) return Effect.done(self._exit) }