Inspecting ManagedRuntime Context from Outside

Hi 👋, I have a question about
ManagedRuntime
:
Is there a way to inspect
ManagedRuntime
context "from outside" without doing something like:
const runtime = ManagedRuntime.make(Layer.empty)

runtime.runFork(E.gen(function*() {
  const context = yield* E.context<never>()
  ...
})
Was this page helpful?