So I have been using Angular and Typescript for a long time. I cannot seem to find out what the Type for an Input file is.
For example:
<input type="file" (change)="fileChangeEvent($event)">
fileChangeEvent(e:?????){}
All examples purely just uses event without any type, and I am curious to know if such a type even exists.