(error: unknown)
| 23 | } |
| 24 | |
| 25 | export function isApiClientError(error: unknown): error is ApiClientError { |
| 26 | return error instanceof ApiClientError |
| 27 | } |
| 28 | |
| 29 | export interface ValidationIssue { |
| 30 | /** Path of the failing field, e.g. ['updates', 'name']. */ |
no outgoing calls
no test coverage detected