(error: unknown)
| 338 | } |
| 339 | |
| 340 | function serializeBffError(error: unknown): SerializedError { |
| 341 | return getSerializedBffError(error) ?? serializeError(error) |
| 342 | } |
| 343 | |
| 344 | function getSerializedBffError(error: unknown): SerializedError | null { |
| 345 | if (isSerializedError(error)) { |
no test coverage detected