edf164d24d1e98b8e6e492729cd1c44ad8e42bf5b4a7caab2a81027f7dc7f0889fa17c8f837fb07a0f4f1541bbf3b7e861556fde380aacabf1ba9c2a0c2e77 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. import type Radio from './radio.vue';
  3. export declare const radioPropsBase: {
  4. modelValue: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | NumberConstructor | StringConstructor)[], unknown, unknown, undefined, boolean>;
  5. size: {
  6. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
  7. readonly required: false;
  8. readonly validator: ((val: unknown) => boolean) | undefined;
  9. __epPropKey: true;
  10. };
  11. disabled: BooleanConstructor;
  12. label: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | NumberConstructor | StringConstructor)[], unknown, unknown, undefined, boolean>;
  13. value: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | NumberConstructor | StringConstructor)[], unknown, unknown, undefined, boolean>;
  14. name: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
  15. };
  16. export declare const radioProps: {
  17. readonly border: BooleanConstructor;
  18. readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | NumberConstructor | StringConstructor)[], unknown, unknown, undefined, boolean>;
  19. readonly size: {
  20. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
  21. readonly required: false;
  22. readonly validator: ((val: unknown) => boolean) | undefined;
  23. __epPropKey: true;
  24. };
  25. readonly disabled: BooleanConstructor;
  26. readonly label: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | NumberConstructor | StringConstructor)[], unknown, unknown, undefined, boolean>;
  27. readonly value: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | NumberConstructor | StringConstructor)[], unknown, unknown, undefined, boolean>;
  28. readonly name: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
  29. };
  30. export declare const radioEmits: {
  31. "update:modelValue": (val: string | number | boolean | undefined) => val is string | number | boolean;
  32. change: (val: string | number | boolean | undefined) => val is string | number | boolean;
  33. };
  34. export type RadioProps = ExtractPropTypes<typeof radioProps>;
  35. export type RadioPropsPublic = __ExtractPublicPropTypes<typeof radioProps>;
  36. export type RadioEmits = typeof radioEmits;
  37. export type RadioInstance = InstanceType<typeof Radio> & unknown;