## isOrganizationArray() function

Type guard to validate that a value is an array of Organization resources.

**Signature:**

```typescript
export declare function isOrganizationArray(value: unknown): value is Organization[];
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| value | unknown | The value to check. |

**Returns:**

value is Organization[]

True if the value is an array of Organization resources.
