fade.d.ts 386 B

123456
  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 fadeIn: Keyframes;
  5. export declare const fadeOut: Keyframes;
  6. export declare const initFadeMotion: (token: TokenWithCommonCls<AliasToken>, sameLevel?: boolean) => CSSInterpolation;