(error: any)
| 112 | } |
| 113 | |
| 114 | export function isValidationError(error: any): error is ValidationError { |
| 115 | return ( |
| 116 | error instanceof ValidationError || error.errorType === "validation_error" |
| 117 | ); |
| 118 | } |
| 119 | |
| 120 | export function isLocalizationError(error: any): error is LocalizationError { |
| 121 | return ( |