ether-admin/node_modules/ant-design-vue/es/vc-trigger/utils/motionUtil.d.ts

13 lines
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 {};