Sugestion about common pattern for exposing a service's functions in TypeScript
It's really often that I wish it was a common pattern to expose a service's common functions on the tag object itself:
Rather than
Rather than
yield* Terminal.display('foo')yield* Terminal.pipe(Effect.flatMap(t => t.display('foo')))