Files
QingLong/WebRoot/html/cdn/lib/tokens/radio.d.ts
2025-08-15 09:13:13 +08:00

7 lines
303 B
TypeScript

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