How to Use `complete()` and `completeWith()` with Deferred in Effect Typescript
Hey, I have a question about Deferred
The docs say that you can complete it with "complete()" and "completeWith()", but it's a bit unclear how to do that.
Could someone please point out how can you pass an Effect to these functions correctly without getting this type error? I see that Effect.as() returns a function and completeWith() does not expect that, but then how should I pass Effects to this fn?
The docs say that you can complete it with "complete()" and "completeWith()", but it's a bit unclear how to do that.
Could someone please point out how can you pass an Effect to these functions correctly without getting this type error? I see that Effect.as() returns a function and completeWith() does not expect that, but then how should I pass Effects to this fn?

