motion.d.ts 463 B

1234567
  1. import type { CSSMotionProps } from 'rc-motion';
  2. declare const initCollapseMotion: (rootCls?: string) => CSSMotionProps;
  3. declare const _SelectPlacements: readonly ["bottomLeft", "bottomRight", "topLeft", "topRight"];
  4. export type SelectCommonPlacement = (typeof _SelectPlacements)[number];
  5. declare const getTransitionName: (rootPrefixCls: string, motion: string, transitionName?: string) => string;
  6. export { getTransitionName };
  7. export default initCollapseMotion;