first commit
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import { ComputedRef, Ref } from "vue";
|
||||
|
||||
//#region ../../packages/hooks/use-draggable/index.d.ts
|
||||
declare const useDraggable: (targetRef: Ref<HTMLElement | undefined>, dragRef: Ref<HTMLElement | undefined>, draggable: ComputedRef<boolean>, overflow?: ComputedRef<boolean>) => {
|
||||
isDragging: Ref<boolean, boolean>;
|
||||
resetPosition: () => void;
|
||||
updatePosition: () => void;
|
||||
};
|
||||
//#endregion
|
||||
export { useDraggable };
|
||||
Reference in New Issue
Block a user