Which @angular/* package(s) are relevant/related to the feature request?
core
Description
Hi, we are having issue with the signature of animationComplete from AnimationCallbackEvent.
It's typed as Function and it's an error from this rule https://typescript-eslint.io/rules/no-unsafe-call/
So we have to disable this rule to be able to call this function.
Proposed solution
I think a better type would be : () => void.
Alternatives considered
No other alternatives considered.