We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2df59ae + 1309c31 commit 5bfaaefCopy full SHA for 5bfaaef
package.json
@@ -4,6 +4,7 @@
4
"description": "draggable component for vue",
5
"license": "MIT",
6
"main": "dist/vuedraggable.umd.min.js",
7
+ "types": "src/vuedraggable.d.ts",
8
"repository": {
9
"type": "git",
10
"url": "https://github.com/SortableJS/Vue.Draggable.git"
src/vuedraggable.d.ts
@@ -0,0 +1,26 @@
1
+declare module 'vuedraggable' {
2
+ import Vue from 'vue';
3
+ class Draggable extends Vue {
+ static install(vue: typeof Vue): void;
+
+ noTransitionOnDrag: boolean;
+ element: string;
+ tag: string;
11
12
+ options: object;
13
14
+ componentData: object;
15
16
+ clone: any;
17
18
+ move: any;
19
20
+ list: any[];
21
22
+ value: any[];
23
+ }
24
25
+ export = Draggable;
26
+}
0 commit comments