UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

16 lines (13 loc) 361 B
interface RadioButtonProps { value?: any; modelValue?: any; class?: string; style?: any; } declare class RadioButton { $props: RadioButtonProps; $emit(eventName: 'update:modelValue', value: any): this; $emit(eventName: 'click', event: Event): this; $emit(eventName: 'change', event: Event): this; } export default RadioButton;