| 80 | * A type representing unhandled effects. |
| 81 | */ |
| 82 | export interface UnhandledEffect<out E extends Effect> { |
| 83 | readonly [unhandledEffect]: E; |
| 84 | } |
| 85 | |
| 86 | /***************** |
| 87 | * Utility types * |
nothing calls this directly
no outgoing calls
no test coverage detected