tdesign-vue
Version:
11 lines (10 loc) • 380 B
TypeScript
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;
name?: string;
}) => void;
};