We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeScript Version: Latest
File lib.es6.d.ts.
lib.es6.d.ts
Code
let reader = new FileReader(); reader.onload = e => fileObj.src = e.target.result;
Expected behavior: Not an error
Actual behavior:
Unresolved variable 'result'
Description:
interface Event has target: EventTarget; And interface EventTarget does not have result
interface Event
target: EventTarget;
interface EventTarget
result
The text was updated successfully, but these errors were encountered:
looks like the same root cause as #299.
Sorry, something went wrong.
Should be covered by microsoft/TypeScript-DOM-lib-generator#207
No branches or pull requests
TypeScript Version: Latest
File
lib.es6.d.ts
.Code
Expected behavior:
Not an error
Actual behavior:
Description:
interface Event
hastarget: EventTarget;
And
interface EventTarget
does not haveresult
The text was updated successfully, but these errors were encountered: