Add shortHand and d.ts files for InputMask
parent
6cf1b01de7
commit
3c7d8d2988
|
@ -0,0 +1 @@
|
|||
export * from './components/inputmask/InputMask';
|
|
@ -0,0 +1,2 @@
|
|||
'use strict';
|
||||
module.exports = require('./components/inputmask/InputMask.vue');
|
|
@ -0,0 +1,12 @@
|
|||
import Vue, { VNode } from 'vue';
|
||||
|
||||
export declare class InputMask extends Vue {
|
||||
value?: string;
|
||||
$emit(eventName: 'input', value: string): this;
|
||||
$emit(eventName: 'focus', event: Event): this;
|
||||
$emit(eventName: 'blur', event: Event): this;
|
||||
$emit(eventName: 'keydown', event: Event): this;
|
||||
$emit(eventName: 'keypress', event: Event): this;
|
||||
$emit(eventName: 'paste', event: Event): this;
|
||||
$emit(eventName: 'complete', event: Event): this;
|
||||
}
|
Loading…
Reference in New Issue