Hello,
I have no-access-missing-member error in my project when linting this template:
<div class="main-section"
[class.actionBarDisplayed]="(actionBarState$ | async).buttons.length > 0">
<div class="main-content top-ease-in-out">
<dashboard *ngIf="(context$ | async) == contextWrapper.dashboard"></dashboard>
<command
[init]="(onCommandPageStatus$ | async)"
*ngIf="(context$ | async) == contextWrapper.command">
</command>
<comp *ngIf="(context$ | async) == contextWrapper.comp"></comp>
</div>
<side-bar class="right-transition hidden">
</side-bar>
</div>
I have error only when accessing async pipe in inputs (ngif is working fine).
packages:
"codelyzer": "^2.0.0-beta.3",
"tslint": "~4.0.0",
"typescript": "2.0.3"
Do you have any idea?
Thanks,
Pierre
Hello,
I have no-access-missing-member error in my project when linting this template:
I have error only when accessing async pipe in inputs (ngif is working fine).
packages:
"codelyzer": "^2.0.0-beta.3",
"tslint": "~4.0.0",
"typescript": "2.0.3"
Do you have any idea?
Thanks,
Pierre