Files
dsProject/dsBase/WebRoot/html/cdn/es/components/radio/src/radio-group.d.ts

15 lines
1.0 KiB
TypeScript
Raw Normal View History

2025-08-14 15:45:08 +08:00
import type { ExtractPropTypes } from '@vue/runtime-core';
export declare const radioGroupProps: {
readonly size: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", false, "" | "small" | "default" | "large", never>;
readonly disabled: BooleanConstructor;
readonly modelValue: import("element-plus/es/utils/props").BuildPropReturn<readonly [StringConstructor, NumberConstructor, BooleanConstructor], "", unknown, unknown, unknown>;
readonly fill: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>;
readonly textColor: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>;
};
export declare type RadioGroupProps = ExtractPropTypes<typeof radioGroupProps>;
export declare const radioGroupEmits: {
"update:modelValue": (val: string | number | boolean) => boolean;
change: (val: string | number | boolean) => boolean;
};
export declare type RadioGroupEmits = typeof radioGroupEmits;