util.d.ts 368 B

12345
  1. import type { CSSProperties } from 'vue';
  2. import type { NotificationPlacement } from './interface';
  3. import type { CSSMotionProps } from '../_util/transition';
  4. export declare function getPlacementStyle(placement: NotificationPlacement, top: number | string, bottom: number | string): CSSProperties;
  5. export declare function getMotion(prefixCls: string): CSSMotionProps;