// ets_tracing: off import * as T from "../../../../Effect/index.js" import type * as Ex from "../../../../Exit/index.js" import type * as C from "../core.js" import * as FromEffect from "./fromEffect.js" /** * The stream that ends with the `Exit` value `exit`. */ export function done(exit: Ex.Exit): C.IO { return FromEffect.fromEffect(T.done(exit)) }