move.d.ts 755 B

1234567891011121314
  1. import type { CSSInterpolation } from '@ant-design/cssinjs';
  2. import { Keyframes } from '@ant-design/cssinjs';
  3. import type { AliasToken, TokenWithCommonCls } from '../../theme/internal';
  4. export declare const moveDownIn: Keyframes;
  5. export declare const moveDownOut: Keyframes;
  6. export declare const moveLeftIn: Keyframes;
  7. export declare const moveLeftOut: Keyframes;
  8. export declare const moveRightIn: Keyframes;
  9. export declare const moveRightOut: Keyframes;
  10. export declare const moveUpIn: Keyframes;
  11. export declare const moveUpOut: Keyframes;
  12. type MoveMotionTypes = 'move-up' | 'move-down' | 'move-left' | 'move-right';
  13. export declare const initMoveMotion: (token: TokenWithCommonCls<AliasToken>, motionName: MoveMotionTypes) => CSSInterpolation;
  14. export {};