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>
16 lines (14 loc) • 412 B
TypeScript
import { Ref } from 'vue';
import { FormColumn } from '../../../types';
export declare function useDraggable(emit: any, columns: Ref<FormColumn[]>): {
draggableOptions: {
options: {
draggable: string;
animation: number;
ghostClass: string;
onStart: () => void;
onEnd: (evt: any) => void;
};
}[];
dragging: Ref<boolean>;
};