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

10 lines
369 B
TypeScript

import { MotionType, TransitionNameType, OpenAnimation } from '../interface';
interface GetMotionProps {
motion?: MotionType;
openAnimation?: OpenAnimation;
openTransitionName?: TransitionNameType;
prefixCls?: string;
}
export declare function getMotion({ prefixCls, motion, openAnimation, openTransitionName, }: GetMotionProps): MotionType;
export {};