ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
13 lines (12 loc) • 348 B
TypeScript
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 {};