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
Hi!
I have this component :
@Component({ selector: 'example-component', templateUrl: 'example-component.component.html', styleUrls: ['example-component.component.scss'] }) export class ExampleComponent { @Input() label: string; @Output() event: string; }
If I wrote this in another template like this :
<example-component (label)="1" (noExistingInput)="'label'" [event]="exampleMethod()"> <example-component>
I have no warning on the noExistingInput, and no warning on label input waiting for a string and receiving a number. Can you provide this?
The text was updated successfully, but these errors were encountered:
Hey @Tukks this is a compile-time error which makes the feature outside the scope of codelyzer. To get this behavior use the Angular language service.
Sorry, something went wrong.
Ok, sorry I opened a issue at angular/angular#21204
hey @mgechev it seems that the Inputs are AOT compilation errors but Outputs are not: angular/angular#17483 (comment)
Shall I open another issue perhaps?
This will require "deep analysis", or type checking, so we will hit these issues #191. Let's leave this to the compiler, whenever it gets ready.
No branches or pull requests
Hi!
I have this component :
If I wrote this in another template like this :
I have no warning on the noExistingInput, and no warning on label input waiting for a string and receiving a number.
Can you provide this?
The text was updated successfully, but these errors were encountered: