tdesign-vue-next
Version:
TDesign Component for vue-next
10 lines (9 loc) • 341 B
TypeScript
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;
};