0e07349424a89ea2d3483229958df3caded6bec20d231e227583aa677bbab368a9f77aa7c336cc626923ae1c67541e333f239d7d5c072e40101feba283ed6c 1.4 KB

12345678910111213141516171819
  1. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. import type Description from './description.vue';
  3. export declare const descriptionProps: {
  4. readonly border: BooleanConstructor;
  5. readonly column: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
  6. readonly direction: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "horizontal" | "vertical", unknown, "horizontal", boolean>;
  7. readonly size: {
  8. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
  9. readonly required: false;
  10. readonly validator: ((val: unknown) => boolean) | undefined;
  11. __epPropKey: true;
  12. };
  13. readonly title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  14. readonly extra: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  15. readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
  16. };
  17. export type DescriptionProps = ExtractPropTypes<typeof descriptionProps>;
  18. export type DescriptionPropsPublic = __ExtractPublicPropTypes<typeof descriptionProps>;
  19. export type DescriptionInstance = InstanceType<typeof Description> & unknown;