(effect: Effect.Effect<A, E, R>, options?: Effect.RunOptions)
| 370 | Effect.runSyncWith(self.cachedContext)(effect) |
| 371 | }, |
| 372 | runPromiseExit<A, E>(effect: Effect.Effect<A, E, R>, options?: Effect.RunOptions): Promise<Exit.Exit<A, E | ER>> { |
| 373 | return self.cachedContext === undefined ? |
| 374 | Effect.runPromiseExit(provide(self, effect), mergeRunOptions(options)) : |
| 375 | Effect.runPromiseExitWith(self.cachedContext)(effect, mergeRunOptions(options)) |
| 376 | }, |
| 377 | runPromise<A, E>(effect: Effect.Effect<A, E, R>, options?: { |
| 378 | readonly signal?: AbortSignal | undefined |
| 379 | }): Promise<A> { |
no test coverage detected