Hello!
Does anyone know is there any VSCODE extension that will help to discover component properties from html template? For example:
<ion-icon [name]="p.icon" [color]="isActive(p)"></ion-icon>
when i type “nam” i not getting code insight with list of available Icon class properties.
There is also “color” property that comes from Ion class (Icon class extends Ion class).
Currently i use Angular language service.
Here is ion-icon documentation. No sign of “color” property.