Extracting Types from an Effect in TypeScript

Is it possible to extract the types from an
Effect
?

For example, I have a function that returns Effect<Context, Error, Value>, is there some utility to extract the Value type?
Was this page helpful?