UNPKG

various-ui

Version:

This is a test version of the Vue 3 component library

16 lines (15 loc) 453 B
import { ExtractPropTypes } from "vue"; export declare const UiRadioPropsOption: { readonly modelValue: { readonly type: StringConstructor; readonly default: ""; }; readonly value: { readonly required: true; }; }; export declare const UiRadioEmits: { change: (_ev: Event) => boolean; "update:modelValue": (_data: any) => boolean; }; export type UiRadioProps = ExtractPropTypes<typeof UiRadioPropsOption>;