UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

10 lines (9 loc) 357 B
import RadioGroup from './radio'; import RadioButton from './radio-button'; import { RadioValue } from './type'; export declare type RadioButtonInstance = InstanceType<typeof RadioButton>; export declare type RadioGroupInstance = InstanceType<typeof RadioGroup> & { handleRadioChange: (value: RadioValue, context: { e: Event; }) => void; };