| 64 | * `false` otherwise. |
| 65 | */ |
| 66 | export const isBackendErrorDetails = details => |
| 67 | Boolean(details) && |
| 68 | Boolean(details.namespace) && |
| 69 | Boolean(details.name) && |
| 70 | Boolean(details.message_format) |
| 71 | |
| 72 | /** |
| 73 | * Returns whether the error has a shape that is not well-known. |
no outgoing calls
no test coverage detected