radio-group.d.ts 1.8 KB

12345678910111213141516171819202122232425
  1. import type { ExtractPropTypes } from '@vue/runtime-core';
  2. import type RadioGroup from './radio-group.vue';
  3. export declare const radioGroupProps: {
  4. readonly id: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
  5. readonly size: {
  6. readonly type: import("@vue/runtime-core").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
  7. readonly required: false;
  8. readonly validator: ((val: unknown) => boolean) | undefined;
  9. __epPropKey: true;
  10. };
  11. readonly disabled: BooleanConstructor;
  12. readonly modelValue: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor], unknown, unknown, "", boolean>;
  13. readonly fill: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  14. readonly label: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
  15. readonly textColor: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  16. readonly name: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
  17. readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  18. };
  19. export declare type RadioGroupProps = ExtractPropTypes<typeof radioGroupProps>;
  20. export declare const radioGroupEmits: {
  21. "update:modelValue": (val: string | number | boolean) => boolean;
  22. change: (val: string | number | boolean) => boolean;
  23. };
  24. export declare type RadioGroupEmits = typeof radioGroupEmits;
  25. export declare type RadioGroupInstance = InstanceType<typeof RadioGroup>;