The function takes a string input and returns the string reversed.

[CODE]: 
```python
def reverse_string(s: str) -> str:
    return s[::-1]
```