x-next 0.0.0-alpha.76 → 0.0.0-alpha.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ import { DirectiveBinding } from 'vue';
2
+ interface ElWithWave extends HTMLElement {
3
+ __wave_timer__?: number;
4
+ __wave_element__?: HTMLElement;
5
+ __wave_handler__?: EventListenerOrEventListenerObject;
6
+ }
7
+ /**
8
+ * 水波纹指令
9
+ * 提供类似Ant Design Vue的点击水波纹效果
10
+ */
11
+ export declare const waveDirective: {
12
+ mounted(el: ElWithWave, binding: DirectiveBinding): void;
13
+ unmounted(el: ElWithWave): void;
14
+ };
15
+ export default waveDirective;