/** * Runs a channel until the end is received. * * @tsplus getter effect/core/stream/Channel run */ export function run( self: Channel ): Effect { return Effect.scoped(self.runScoped) }