Extract return type
Are there any utility functions for example to extract what the Exit type would be given a certain Effect or () => Effect<...> ? Or do I need to write my own? Just realising that after running an effect I can be left with a very complex Exit object that I don't want to type twice when assigning it to a variable. So I'd like
let MyVar : GetExitTypeOf<The particular Effect or () => Effect>