Start case is a naming convention where the first letter of each word in an identifier is written in uppercase and the rest of the letters are in lowercase, with the words separated by spaces, such as `Start Case`.
## Signature
```typescript
function startCase(str: string): string;
```
### Parameters
-`str` (`string`): The string to convert to start case.