@lumx/vue 4.3.2-alpha.25 → 4.3.2-alpha.27
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.
- package/composables/useHasEventListener.d.ts +7 -0
- package/index.js +864 -866
- package/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Check if a specific event listener is attached to the current component instance.
|
|
3
|
+
*
|
|
4
|
+
* @param eventName - The event name to check (e.g., 'onClick', 'onKeyPress')
|
|
5
|
+
* @returns true if the event listener exists, false otherwise
|
|
6
|
+
*/
|
|
7
|
+
export declare const useHasEventListener: (eventName: string) => boolean;
|