WaveEffect.d.ts 358 B

12345678910
  1. import type { UnmountType } from '../../config-provider/UnstableContext';
  2. import type { ShowWaveEffect } from './interface';
  3. export interface WaveEffectProps {
  4. className: string;
  5. target: HTMLElement;
  6. component?: string;
  7. registerUnmount: () => UnmountType | null;
  8. }
  9. declare const showWaveEffect: ShowWaveEffect;
  10. export default showWaveEffect;