You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functiononChange(event){varfile=event.target.files[0];varreader=newFileReader();reader.onload=function(event){// The file's text will be printed hereconsole.log(event.target.result)};reader.readAsText(file);}
Expected behavior:
No errors.
Actual behavior:
[ts] Property 'result' does not exist on type 'EventTarget'.
This is a regression, since there were no such errors reported in TS 2.9.2.
Methuselah96, Teamop, jwalton, elf-pavlik, G-Rath and 3 more