antd
Version:
An enterprise-class UI design language and React components implementation
11 lines (10 loc) • 339 B
TypeScript
import type { GlobalToken } from '../../theme';
export declare const TARGET_CLS = "ant-wave-target";
export type ShowWaveEffect = (element: HTMLElement, info: {
className: string;
token: GlobalToken;
component?: string;
event: MouseEvent;
hashId: string;
}) => void;
export type ShowWave = (event: MouseEvent) => void;