UNPKG

tdesign-vue-next

Version:
15 lines (14 loc) 418 B
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<{}>;