primevue-mirror/src/components/radiobutton/RadioButton.d.ts

9 lines
183 B
TypeScript
Executable File

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