fade.d.ts 448 B

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