What is the TypeScript definition for the onTransitionEndCapture event in React?
The right interface for onTransitionEndCapture is AnimationEvent
Please continue reading below to see how to use it or read my guide on using React events with TypeScript.
You can also go to the search page 🔍 to find another event.
Interface
interface TransitionEvent<T = Element> extends SyntheticEvent<T, NativeTransitionEvent> {
elapsedTime: number;
propertyName: string;
pseudoElement: string;
}
Full example
import React, { TransitionEvent } from 'react';
const App = () => {
const handleTransitionEvent = (e: TransitionEvent<HTMLDivElement>) => {
// Do something
};
return <div onTransitionEndCapture={handleTransitionEvent}>{/** Some code */}</div>;
};
export default App;