UNPKG

rc-trigger

Version:

base abstract trigger component for react

11 lines (10 loc) 399 B
import type { CSSMotionProps } from 'rc-motion'; import type { AnimationType, TransitionNameType } from '../interface'; interface GetMotionProps { motion: CSSMotionProps; animation: AnimationType; transitionName: TransitionNameType; prefixCls: string; } export declare function getMotion({ prefixCls, motion, animation, transitionName, }: GetMotionProps): CSSMotionProps; export {};