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.
1 parent 9d73c43 commit 7cad9f0Copy full SHA for 7cad9f0
package.json
@@ -11,8 +11,10 @@
11
"scripts": {
12
"test": "echo \"Error: no test specified\" && exit 1"
13
},
14
+ "typings": "types/index.d.ts",
15
"files": [
- "index.js"
16
+ "index.js",
17
+ "types/index.d.ts"
18
],
19
"repository": {
20
"type": "git",
@@ -35,6 +37,7 @@
35
37
"nativescript-toasty": "*",
36
38
"nativescript-socketio": "*",
39
"tns-core-modules": "*",
- "@vue/devtools": "*"
40
+ "@vue/devtools": "*",
41
+ "vue": "*"
42
}
43
types/index.d.ts
@@ -0,0 +1,3 @@
1
+import _Vue from "vue";
2
+
3
+export declare function install(Vue: typeof _Vue): void;
0 commit comments