Files
PartsInquiry/admin/node_modules/element-plus/lib/components/radio/src/constants.d.ts
2025-09-24 20:35:15 +08:00

7 lines
290 B
TypeScript

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>;