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.
33 lines
1.8 KiB
33 lines
1.8 KiB
|
2 years ago
|
import type { ExtractPropTypes } from 'vue';
|
||
|
|
import type Radio from './radio.vue';
|
||
|
|
export declare const radioPropsBase: {
|
||
|
|
size: {
|
||
|
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
||
|
|
readonly required: false;
|
||
|
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
||
|
|
__epPropKey: true;
|
||
|
|
};
|
||
|
|
disabled: BooleanConstructor;
|
||
|
|
label: import("element-plus/es/utils").EpPropFinalized<(NumberConstructor | BooleanConstructor | StringConstructor)[], unknown, unknown, string, boolean>;
|
||
|
|
};
|
||
|
|
export declare const radioProps: {
|
||
|
|
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor], unknown, unknown, "", boolean>;
|
||
|
|
readonly name: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
||
|
|
readonly border: BooleanConstructor;
|
||
|
|
readonly size: {
|
||
|
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
||
|
|
readonly required: false;
|
||
|
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
||
|
|
__epPropKey: true;
|
||
|
|
};
|
||
|
|
readonly disabled: BooleanConstructor;
|
||
|
|
readonly label: import("element-plus/es/utils").EpPropFinalized<(NumberConstructor | BooleanConstructor | StringConstructor)[], unknown, unknown, string, boolean>;
|
||
|
|
};
|
||
|
|
export declare const radioEmits: {
|
||
|
|
"update:modelValue": (val: string | number | boolean) => boolean;
|
||
|
|
change: (val: string | number | boolean) => boolean;
|
||
|
|
};
|
||
|
|
export declare type RadioProps = ExtractPropTypes<typeof radioProps>;
|
||
|
|
export declare type RadioEmits = typeof radioEmits;
|
||
|
|
export declare type RadioInstance = InstanceType<typeof Radio>;
|