@v1nt1248/3nclient-lib 0.2.34 → 0.2.36

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/README.md CHANGED
@@ -60,6 +60,9 @@ You can run the project as `pnpm dev` or `npm run dev`.
60
60
  - emoticons
61
61
  - mailReg
62
62
 
63
+ ### Composables
64
+ - useDblClickHandler
65
+
63
66
  ### Utils
64
67
  - sqlite-on-3nstorage
65
68
  - ...
@@ -0,0 +1 @@
1
+ export * from './useDblClickHandler';
@@ -0,0 +1,3 @@
1
+ export declare function useDblClickHandler(onClick: (ev: MouseEvent) => void, onDblClick: (ev: MouseEvent) => void, delay?: number): {
2
+ handleDblClick: (ev: MouseEvent) => void;
3
+ };