ant-design-x-vue-next
Version:
Ant Design X for Vue — community continuation aligned with @ant-design/x
13 lines (12 loc) • 559 B
TypeScript
import { Keyframes, type CSSInterpolation } from '../../_util/cssinjs';
import type { FullToken } from '../../theme/cssinjs-utils';
export declare const fadeInLeft: Keyframes;
export declare const fadeIn: Keyframes;
export declare const fadeOut: Keyframes;
type FadeToken = FullToken<'Prompts'> & {
antCls: string;
componentCls: string;
};
export declare const initFadeLeftMotion: (token: FadeToken, sameLevel?: boolean) => CSSInterpolation;
export declare const initFadeMotion: (token: FadeToken, sameLevel?: boolean) => CSSInterpolation;
export {};