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

9 lines
183 B
TypeScript
Raw Normal View History

2019-05-29 10:09:39 +00:00
import Vue from 'vue';
declare class RadioButton extends Vue {
value?: any;
modelValue?: any;
2020-09-21 12:27:08 +00:00
$emit(eventName: string, event: Event): this;
}
export default RadioButton;