Fixed #595 - Typescript definitions improvement

This commit is contained in:
Cagatay Civici 2020-11-26 11:20:37 +03:00
parent 9aa51b2877
commit 1d72c920a1
75 changed files with 287 additions and 138 deletions

View file

@ -1,7 +1,9 @@
import Vue from 'vue';
export declare class RadioButton extends Vue {
declare class RadioButton extends Vue {
value?: any;
modelValue?: any;
$emit(eventName: string, event: Event): this;
}
}
export default RadioButton;