Type Mismatch in Logging Stream Duration with Effect and Typescript
hey, running into an issue where I was trying to log the "duration" of a stream - basically how long it takes to complete. For some reason, my local TS / Effect setup allows the following code:
Stream.make(1,2,3).pipe(Effect.withLogSpan("demo")) without any type errors. However, that is invalid on the Effect Playground. Importantly, it also does not seem to work at runtime. Any idea where the mismatch might be?