I\'m trying to get rid of my tslint error Type declaration of \'any\' loses type-safety. but I\'m struggling to figure out what the correct type would be for the Ev
Type declaration of \'any\' loses type-safety.
React.MouseEvent works for me:
private onClick = (e: React.MouseEvent) => { let button = e.target as HTMLInputElement; }