zoom.d.ts 963 B

123456789101112131415161718
  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 zoomIn: Keyframes;
  5. export declare const zoomOut: Keyframes;
  6. export declare const zoomBigIn: Keyframes;
  7. export declare const zoomBigOut: Keyframes;
  8. export declare const zoomUpIn: Keyframes;
  9. export declare const zoomUpOut: Keyframes;
  10. export declare const zoomLeftIn: Keyframes;
  11. export declare const zoomLeftOut: Keyframes;
  12. export declare const zoomRightIn: Keyframes;
  13. export declare const zoomRightOut: Keyframes;
  14. export declare const zoomDownIn: Keyframes;
  15. export declare const zoomDownOut: Keyframes;
  16. type ZoomMotionTypes = 'zoom' | 'zoom-big' | 'zoom-big-fast' | 'zoom-left' | 'zoom-right' | 'zoom-up' | 'zoom-down';
  17. export declare const initZoomMotion: (token: TokenWithCommonCls<AliasToken>, motionName: ZoomMotionTypes) => CSSInterpolation;
  18. export {};