TS7006
typescript Parameter Implicitly Has any Type
A function parameter has no type annotation and its type cannot be inferred, so it implicitly becomes `any`. Add a type annotation or enable `noImplicitAny` to enforce explicit typing.
A function parameter has no type annotation and its type cannot be inferred, so it implicitly becomes `any`. Add a type annotation or enable `noImplicitAny` to enforce explicit typing.