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 there, there is an general issue regarding your d.ts files. Please add a name for your event params.
Your d.ts-files:
onChange?({originalEvent: Event, value: boolean}): void;
This declaration fires an tsc error: Error:(24, 37) TS7031: Binding element 'Event' implicitly has an 'any' type.
Fix:
onChange?(e: {originalEvent: Event, value: boolean}): void;
Just add an parameter name and everything is fine!
Bye bye. Mariusz
The text was updated successfully, but these errors were encountered:
Fix typings primefaces#236
004f067
Merge pull request #238 from SwissLife-F2C/master
745c340
Fix typings #236 #237 #235
cagataycivici
No branches or pull requests
Hi there,
there is an general issue regarding your d.ts files. Please add a name for your event params.
Your d.ts-files:
This declaration fires an tsc error: Error:(24, 37) TS7031: Binding element 'Event' implicitly has an 'any' type.
Fix:
Just add an parameter name and everything is fine!
Bye bye.
Mariusz
The text was updated successfully, but these errors were encountered: