* 错误处理器配置
| 198 | * 错误处理器配置 |
| 199 | */ |
| 200 | interface ErrorHandlerConfig { |
| 201 | showNotification: boolean |
| 202 | showMessage: boolean |
| 203 | logToConsole: boolean |
| 204 | rethrow: boolean |
| 205 | } |
| 206 | |
| 207 | const DEFAULT_CONFIG: ErrorHandlerConfig = { |
| 208 | showNotification: false, |
nothing calls this directly
no outgoing calls
no test coverage detected