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 2b584f7 commit 6d7d6ceCopy full SHA for 6d7d6ce
types/index.d.ts
@@ -1,9 +1,11 @@
1
-import Vue from 'vue';
+declare module 'vue-autonumeric' {
2
+ import Vue from 'vue';
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;
+ export default class VueAutonumeric extends Vue {
+ public value: number | null | string;
+ public options: object | string | object[] | string[];
+ public resetOnOptions: boolean;
+ public placeholder: string;
9
+ public tag: string;
10
+ }
11
}
0 commit comments