We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee37562 commit 2b584f7Copy full SHA for 2b584f7
package.json
@@ -15,6 +15,7 @@
15
"lintfix": "eslint --fix --ext .js,.vue src examples-src build"
16
},
17
"main": "dist/vue-autonumeric.min.js",
18
+ "typings": "types/index.d.ts",
19
"readmeFilename": "README.md",
20
"keywords": [
21
"autonumeric",
types/index.d.ts
@@ -0,0 +1,9 @@
1
+import Vue from 'vue';
2
+
3
+export default class VueAutonumeric extends Vue {
4
+ public value: number | null | string;
5
+ public options: object | string | object[] | string[];
6
+ public resetOnOptions: boolean;
7
+ public placeholder: string;
8
+ public tag: string;
9
+}
0 commit comments