Anyone know of a VSCode extension that will update Angular templates when we refactor component or service properites.
For example we could be referencing a state property like this:
<button [disabled]="!(state.saveReady$ | async)"
If we change saveReady$
to isSaveReady$
in the service then the template must also be updated.
Would also be nice if it enabled auto complete inside the template.