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
The current typing of RenderResult.container leads to an error when trying to use container.firstChild.
Not all HTMLElements have a firstChild property. Since we know container should always be a <div />, it should be HTMLDivElement.
HTMLElement
firstChild
container
<div />
HTMLDivElement
The text was updated successfully, but these errors were encountered:
needed to add dom libs to my tsconfig.
{ "compilerOptions": { + "lib": ["dom"], }, }
Sorry, something went wrong.
fix(click/dblClick): prevent blur when clicking the same element (tes…
585f1df
…ting-library#265)
Successfully merging a pull request may close this issue.
The current typing of RenderResult.container leads to an error when trying to use container.firstChild.
Not all
HTMLElement
s have afirstChild
property. Since we knowcontainer
should always be a<div />
, it should beHTMLDivElement
.The text was updated successfully, but these errors were encountered: