UNPKG

tdesign-vue-next

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