react-component-transition
Version:
Easy animations between react component transitions.
9 lines (8 loc) • 313 B
TypeScript
import { AnimationSettingsProp } from "../../types";
import { AnimationHook } from "./types";
interface ExitAnimationProps extends AnimationHook {
settings: AnimationSettingsProp;
prevClientRect: ClientRect;
}
export declare const useExitAnimation: (props: ExitAnimationProps) => void;
export {};