forgeplus-react/node_modules/rc-menu/lib/utils/legacyUtil.d.ts

10 lines
369 B
TypeScript

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