hongluan-ui
Version:
Hongluan Component Library for Vue 3
7 lines (6 loc) • 302 B
TypeScript
import type { RadioGroupProps } from 'hongluan-ui/es/components';
import type { InjectionKey } from 'vue';
export interface RadioGroupContext extends RadioGroupProps {
changeEvent: (val: RadioGroupProps['modelValue']) => void;
}
export declare const radioGroupKey: InjectionKey<RadioGroupContext>;