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