## sortStringArray() function

Sorts an array of strings in place using the localeCompare method.

This method will mutate the input array.

**Signature:**

```typescript
export declare function sortStringArray(array: string[]): string[];
```

## Parameters

| Parameter | Type       | Description                       |
|-----------|------------|-----------------------------------|
| array     | string[]   | The array of strings to sort.     |

**Returns:**

string[]

The sorted array of strings.
