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
Being concrete this line:
on( event: string, callback: ( ...args: any ) => any ): void;
should be changed to the following:
on( event: string, callback: ( ...args: any[] ) => any ): void;
to make the old TS compiler happy.
Sadly, the package builder which should compile packages working with Angular@5 can't find such mistakes.
The text was updated successfully, but these errors were encountered:
Merge pull request #173 from ckeditor/i/172
2a3d121
Fix: Fixed typings for `Watchdog` to make old TS compilers happy. Closes #172.
ma2ciek
Successfully merging a pull request may close this issue.
Being concrete this line:
should be changed to the following:
to make the old TS compiler happy.
Sadly, the package builder which should compile packages working with Angular@5 can't find such mistakes.
The text was updated successfully, but these errors were encountered: