/** * Accesses the specified service in the environment of the channel. * * @tsplus static effect/core/stream/Channel.Ops serviceWith */ export function serviceWith( tag: Tag, f: (resource: T) => OutDone ): Channel { return Channel.service(tag).map(f) }