| 16 | export type FrontendErrorReporter = (error: unknown, context: FrontendErrorContext) => void; |
| 17 | |
| 18 | class FrontendHandledError extends Data.TaggedError("FrontendHandledError")<{ |
| 19 | readonly cause: unknown; |
| 20 | readonly context: FrontendErrorContext; |
| 21 | }> {} |
nothing calls this directly
no outgoing calls
no test coverage detected