move.d.ts 817 B

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