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
export class MenuNavLargeComponent extends MenuNavComponent { constructor() { super(); } }
export abstract class MenuNavComponent { menu: string[]; }
<div *ngFor="let m of menu"></div>
Error: The property "menu" that you're trying to access does not exist in the class declaration.
No error.
In the template if I replace menu by this['menu'] the error goes away but it doesn't seem like a clean solution.
The text was updated successfully, but these errors were encountered:
duplicate #191
Sorry, something went wrong.
Now both issues are closed? Please re-open one !
This won't be fixed #191 (comment)
You can use the AoT build of Angular.
@StefH , 'no-access-missing-member` is are out of date since the Language service Angular make this job. You can remove this rule now.
No branches or pull requests
Bug report
TypeScript code being linted
Actual behavior
Error: The property "menu" that you're trying to access does not exist in the class declaration.
Expected behavior
No error.
In the template if I replace menu by this['menu'] the error goes away but it doesn't seem like a clean solution.
The text was updated successfully, but these errors were encountered: