Type Alias InputChangeEvent

InputChangeEvent: {
    target: HtmlInputElement;
    timeStamp: number;
    type: "change";
    value: string;
}