/** * A stream that ends with the specified `Exit` value. * * @tsplus static effect/core/stream/Stream.Ops done */ export function done(exit: Exit): Stream { return Stream.fromEffect(Effect.done(exit)) }