| 22 | type Register = (data: AnimationProps | AnimateKeyframesProps) => void; |
| 23 | |
| 24 | interface IAnimationContext { |
| 25 | animationStates: AnimationStates; |
| 26 | register: Register; |
| 27 | } |
| 28 | export const AnimateContext = React.createContext<IAnimationContext>({ |
| 29 | animationStates: {}, |
| 30 | register: () => {}, |
nothing calls this directly
no outgoing calls
no test coverage detected