## getDateProperty() function

Returns a Date property as a Date. When working with JSON objects, Dates are often serialized as ISO-8601 strings. When that happens, we need to safely convert to a proper Date object.

**Signature:**
```typescript
export declare function getDateProperty(date: string | undefined): Date | undefined;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| date | string \| undefined | The date property value, which could be a string or a Date object. |

**Returns:**

Date \| undefined

A Date object.
