(error: unknown)
| 87 | } |
| 88 | |
| 89 | export function isRootSelectionError(error: unknown): error is RootSelectionError { |
| 90 | return error instanceof RootSelectionError; |
| 91 | } |
| 92 | |
| 93 | function fromStoreError(error: unknown): never { |
| 94 | if (error instanceof StoreError) { |
no outgoing calls
no test coverage detected