tdesign-vue-next
Version:
TDesign Component for vue-next
15 lines (14 loc) • 418 B
TypeScript
import { InjectionKey } from 'vue';
import { RadioValue } from '../type';
export declare const RadioGroupInjectionKey: InjectionKey<{
name: string;
disabled: boolean;
readonly: boolean;
value: RadioValue;
allowUncheck: boolean;
setValue: (value: RadioValue, context: {
e: Event;
name?: string;
}) => void;
}>;
export declare const RadioButtonInjectionKey: InjectionKey<{}>;