The function takes an input string and appends an extra occurrence of the last character of the string to the end of the string.

[CODE]:
```python
def duplicate_last_character(input_string: str) -> str:
    return input_string + input_string[-1]
```