UNPKG

@arco-design/web-vue

Version:

Arco Design Vue 2.0: A Vue.js 3 UI Library

12 lines (11 loc) 310 B
interface ImageDragProps { wrapperEl: HTMLElement; imageEl: HTMLElement; scale: number; } export default function useImageDrag(props: ImageDragProps): { translate: import("vue").Ref<number[], number[]>; moving: import("vue").Ref<boolean, boolean>; resetTranslate(): void; }; export {};