-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
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
Implicit any
type in manual_typings/globals.d.ts
#72
Labels
Comments
Hey, of course! |
same problem with this part |
hmm, interesting, you're right, reopening, it must be related to my latest refactoring for reference adding error log: tsc
91 exp: ( s, l, a, i ) => any,
~
node_modules/ng-metadata/manual_typings/globals.d.ts(91,12): error TS7006: Parameter 's' implicitly has an 'any' type.
91 exp: ( s, l, a, i ) => any,
~
node_modules/ng-metadata/manual_typings/globals.d.ts(91,15): error TS7006: Parameter 'l' implicitly has an 'any' type.
91 exp: ( s, l, a, i ) => any,
~
node_modules/ng-metadata/manual_typings/globals.d.ts(91,18): error TS7006: Parameter 'a' implicitly has an 'any' type.
91 exp: ( s, l, a, i ) => any,
~
node_modules/ng-metadata/manual_typings/globals.d.ts(91,21): error TS7006: Parameter 'i' implicitly has an 'any' type.
92 fn: ( newValue, oldValue ) => any,
~~~~~~~~
node_modules/ng-metadata/manual_typings/globals.d.ts(92,11): error TS7006: Parameter 'newValue' implicitly has an 'any' type.
92 fn: ( newValue, oldValue ) => any,
~~~~~~~~
node_modules/ng-metadata/manual_typings/globals.d.ts(92,21): error TS7006: Parameter 'oldValue' implicitly has an 'any' type.
93 get: ( s, l, a, i ) => any,
~
node_modules/ng-metadata/manual_typings/globals.d.ts(93,12): error TS7006: Parameter 's' implicitly has an 'any' type.
93 get: ( s, l, a, i ) => any,
~
node_modules/ng-metadata/manual_typings/globals.d.ts(93,15): error TS7006: Parameter 'l' implicitly has an 'any' type.
93 get: ( s, l, a, i ) => any,
~
node_modules/ng-metadata/manual_typings/globals.d.ts(93,18): error TS7006: Parameter 'a' implicitly has an 'any' type.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @Hotell,
I have enabled the
noImplicitAny
flag for the TS compiler for my code base and I am down to one last error... in ng-metadata :)The culprit is
expensiveChecks
inmanual_typings/globals.d.ts
:Are you happy to accept a PR to annotate it explicitly with
: any
?The text was updated successfully, but these errors were encountered: