You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
1.0 KiB
15 lines
1.0 KiB
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;
|