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
I'm running into the linting error: (no-access-missing-member) tests/pony.ts[9, 44]: The method "pony" that you're trying to access does not exist in the class declaration.
whereas we should have no error (the pony field has indeed a color attribute of type string).
The text was updated successfully, but these errors were encountered:
@cexbrayat thanks for pointing this out. This one will be easy to fix. @aitboudad yeah, this is in the roadmap. We will need to use the TypeScript language service in order to resolve the symbol location in such locations.
When linting this component with codelyzer
beta.0
andno-access-missing-member: true
:and
PonyModel
is:I'm running into the linting error:
(no-access-missing-member) tests/pony.ts[9, 44]: The method "pony" that you're trying to access does not exist in the class declaration.
whereas we should have no error (the
pony
field has indeed acolor
attribute of typestring
).The text was updated successfully, but these errors were encountered: