UNPKG

element-plus

Version:

A Component Library for Vue 3

7 lines (6 loc) 290 B
import type { InjectionKey } from 'vue'; import type { RadioGroupProps } from './radio-group'; export interface RadioGroupContext extends RadioGroupProps { changeEvent: (val: RadioGroupProps['modelValue']) => void; } export declare const radioGroupKey: InjectionKey<RadioGroupContext>;