Created InputText.d.ts

pull/12/head
mertsincan 2019-05-29 12:03:30 +03:00
parent 9a4b95534d
commit 5ea0cfce34
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import Vue from 'vue';
export declare class InputText extends Vue {
value?: string;
$emit(eventName: 'input', value: string): this;
}