Extracting the value from an Effect<never, never, string>
My Effect.runSyc function returns a Effect of type Effect<never, never, string> of which the result looks as follows
{
_id: "Exit",
_tag: "Success",
value: "foobar"
}
How can i extract the value from this Effect?
{
_id: "Exit",
_tag: "Success",
value: "foobar"
}
How can i extract the value from this Effect?
