11 lines
358 B
TypeScript
11 lines
358 B
TypeScript
import type { UnmountType } from '../../config-provider/UnstableContext';
|
|
import type { ShowWaveEffect } from './interface';
|
|
export interface WaveEffectProps {
|
|
className: string;
|
|
target: HTMLElement;
|
|
component?: string;
|
|
registerUnmount: () => UnmountType | null;
|
|
}
|
|
declare const showWaveEffect: ShowWaveEffect;
|
|
export default showWaveEffect;
|