Created Textarea.d.ts

pull/12/head
mertsincan 2019-05-29 14:14:30 +03:00
parent c072b67d42
commit fb6fe2da17
1 changed files with 7 additions and 0 deletions

7
src/components/textarea/Textarea.d.ts vendored Normal file
View File

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