(effect: Effect.Effect<A, E, R>, options?: {
readonly signal?: AbortSignal | undefined
})
| 126 | internalRuntime.unsafeRunCallback(self.cachedRuntime)(effect, options) |
| 127 | }, |
| 128 | runPromise<A, E>(effect: Effect.Effect<A, E, R>, options?: { |
| 129 | readonly signal?: AbortSignal | undefined |
| 130 | }): Promise<A> { |
| 131 | return self.cachedRuntime === undefined ? |
| 132 | internalRuntime.unsafeRunPromiseEffect(provide(self, effect), options) : |
| 133 | internalRuntime.unsafeRunPromise(self.cachedRuntime)(effect, options) |
| 134 | } |
| 135 | }) |
| 136 | return self |
| 137 | } |