import { TakeInternal } from "@effect/core/stream/Take/operations/_internal/TakeInternal" /** * Creates a `Take` with the specified chunk. * * @tsplus static effect/core/stream/Take.Ops chunk */ export function chunk(chunk: Chunk): Take { return new TakeInternal(Exit.succeed(chunk)) }