jstd-web/node_modules/element-plus/es/hooks/use-draggable/index.d.ts

3 lines
248 B
TypeScript
Raw Normal View History

2025-11-25 15:23:22 +08:00
import type { ComputedRef, Ref } from 'vue';
export declare const useDraggable: (targetRef: Ref<HTMLElement | undefined>, dragRef: Ref<HTMLElement | undefined>, draggable: ComputedRef<boolean>, overflow?: ComputedRef<boolean> | undefined) => void;