UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

13 lines (12 loc) 348 B
import type { AnimationType, TransitionNameType } from '../interface'; interface GetMotionProps { animation: AnimationType; transitionName: TransitionNameType; prefixCls: string; } export declare function getMotion({ prefixCls, animation, transitionName }: GetMotionProps): { name: string; } | { name?: undefined; }; export {};