mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-24 09:41:17 +00:00
6 lines
298 B
TypeScript
6 lines
298 B
TypeScript
import type { ComputedRef, Ref } from 'vue';
|
|
export declare const useDraggable: (targetRef: Ref<HTMLElement | undefined>, dragRef: Ref<HTMLElement | undefined>, draggable: ComputedRef<boolean>, overflow?: ComputedRef<boolean>) => {
|
|
resetPosition: () => void;
|
|
updatePosition: () => void;
|
|
};
|