xdesign-vue-next
Version:
XDesign Component for vue-next
13 lines (12 loc) • 371 B
TypeScript
import { InjectionKey } from 'vue';
import { RadioValue } from './type';
export declare const RadioGroupInjectionKey: InjectionKey<{
name: string;
disabled: boolean;
value: RadioValue;
allowUncheck: boolean;
setValue: (value: RadioValue, context: {
e: Event;
}) => void;
}>;
export declare const RadioButtonInjectionKey: InjectionKey<{}>;