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
// main.tsimport{Checked}from'./base';interfaceCheckableElementextendsHTMLElement,Checked{}declare global {interfaceHTMLElementTagNameMap{'checkable-element': CheckableElement;}}
web-component-analyzer appears not to know that <checkable-element> has a .checked property. The issue seems to be specific to interfaces that extend imported interfaces. Specifically, I checked these cases:
✅class extending another class declared in the same file
✅class extending another class imported from another file
✅interface extending an interface declared in the same file
❌interface extending an interface imported from another file
I think there's something still up with the original code that I reduced this down from, which is that the plugin can't find the checked property on <paper-checkbox>. I'm working on coming up with a minimal repro now.
Consider a project like:
web-component-analyzer appears not to know that
<checkable-element
> has a.checked
property. The issue seems to be specific to interfaces that extend imported interfaces. Specifically, I checked these cases:Standalone repro at https://github.com/rictic/repro-wca-import-interface-issue
The text was updated successfully, but these errors were encountered: