## normalizeOperationOutcome() function

Normalizes an error object into an OperationOutcome.

**Signature:**

```typescript
export declare function normalizeOperationOutcome(error: unknown): OperationOutcome;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| error | unknown | The error value which could be a string, Error, OperationOutcome, or other unknown type. |

**Returns:**

OperationOutcome

The normalized OperationOutcome.
