Injecting a Service into Another in Effect Typescript
I have a service, Service, created with Effect.Service and a second service, Client, created with Effect.Service. I am trying to inject
a Client into Service using const client = yield* Client but am getting a type error. How can I inject one service into another?
a Client into Service using const client = yield* Client but am getting a type error. How can I inject one service into another?
