We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ee37562 + 6d7d6ce commit b7d70a4Copy full SHA for b7d70a4
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,11 @@
1
+declare module 'vue-autonumeric' {
2
+ import Vue from 'vue';
3
+
4
+ export default class VueAutonumeric extends Vue {
5
+ public value: number | null | string;
6
+ public options: object | string | object[] | string[];
7
+ public resetOnOptions: boolean;
8
+ public placeholder: string;
9
+ public tag: string;
10
+ }
11
+}
0 commit comments