// ets_tracing: off import type * as T from "../../../../Effect/index.js" import * as M from "../../../../Managed/index.js" import type * as C from "../core.js" import * as RunManaged from "./runManaged.js" /** * Runs a channel until the end is received */ export function run( self: C.Channel ): T.Effect { return M.useNow(RunManaged.runManaged(self)) }