radio.d.ts 303 B

123456
  1. import type { RadioGroupProps } from 'element-plus/es/components';
  2. import type { InjectionKey } from 'vue';
  3. export interface RadioGroupContext extends RadioGroupProps {
  4. changeEvent: (val: RadioGroupProps['modelValue']) => void;
  5. }
  6. export declare const radioGroupKey: InjectionKey<RadioGroupContext>;