Files
icehrm/web/node_modules/rc-trigger/lib/utils/legacyUtil.d.ts
2020-05-20 18:47:29 +02:00

10 lines
349 B
TypeScript

import { MotionType, AnimationType, TransitionNameType } from '../interface';
interface GetMotionProps {
motion: MotionType;
animation: AnimationType;
transitionName: TransitionNameType;
prefixCls: string;
}
export declare function getMotion({ prefixCls, motion, animation, transitionName, }: GetMotionProps): MotionType;
export {};