various-ui
Version:
This is a test version of the Vue 3 component library
21 lines (20 loc) • 694 B
TypeScript
import { ExtractPropTypes, InjectionKey } from "vue";
export declare const UiRadioGroupPropsOption: {
readonly modelValue: {
readonly type: StringConstructor;
readonly required: true;
};
readonly name: {
readonly type: StringConstructor;
};
};
export declare const UiRadioGroupEmits: {
"update:modelValue": (value: any) => boolean;
change: () => boolean;
};
export type UiRadioGroupProps = ExtractPropTypes<typeof UiRadioGroupPropsOption>;
export type UiRadioGroupInjectionKeyType = InjectionKey<{
define: UiRadioGroupProps;
change: (...args: any) => void;
}>;
export declare const UiRadioGroupInjectionKey: UiRadioGroupInjectionKeyType;