UNPKG

ideaz-element

Version:

<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>

29 lines (27 loc) 769 B
import { Ref } from 'vue'; export declare function useDraggable(emit: any, tableData: Ref<any>, middleTableCols: Ref<any>): { draggableOptions: ({ selector: string; options: { animation: number; handle: string; ghostClass: string; dragClass: string; onStart: () => void; onEnd: (evt: any) => void; delay?: undefined; }; } | { selector: string; options: { animation: number; delay: number; ghostClass: string; onEnd: (evt: any) => void; handle?: undefined; dragClass?: undefined; onStart?: undefined; }; })[]; dragging: Ref<boolean>; };