TS7031: Binding element 'Component' implicitly has an 'any' type.
Answers
Answered by
0
Code
function test({a:any}) { }
Expected behavior:
Should compile with --noImplicitAny(compiles fine with 1.8.0)
Actual behavior:
error TS7031: Binding element 'any' implicitly has an 'any' type.
function test({a:any}) { }
Expected behavior:
Should compile with --noImplicitAny(compiles fine with 1.8.0)
Actual behavior:
error TS7031: Binding element 'any' implicitly has an 'any' type.
Similar questions