The simplest way would be to set the input value to an empty string directly in the change or input event, which one mostly listens to anyways.
onFileInputChanged(event) {
// todo: read the filenames and do the work
// reset the value directly using the srcElement property from the event
event.srcElement.value = ""
}