Refactor #957 - Improve TypeScript definitions

This commit is contained in:
mertsincan 2021-02-09 17:49:37 +03:00
parent 328cb93a11
commit 1c81464760
66 changed files with 417 additions and 229 deletions

View file

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