mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Refactor #957 - Improve TypeScript definitions
This commit is contained in:
parent
328cb93a11
commit
1c81464760
66 changed files with 417 additions and 229 deletions
10
src/components/radiobutton/RadioButton.d.ts
vendored
10
src/components/radiobutton/RadioButton.d.ts
vendored
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue