d6c248ef5b6c6ceff6563ad3cde3c54db34229c09c02c52c8d8e477a0938fdb43e6ad899a40f02a70069baf7b97b533b6d1cc16a07815c34d19dfd944d90ee 1.8 KB

1234567891011121314151617181920212223242526
  1. import type { ExtractPropTypes, PropType, __ExtractPublicPropTypes } from 'vue';
  2. import type Link from './link.vue';
  3. export declare const linkProps: {
  4. readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "default" | "primary" | "success" | "warning" | "info" | "danger", unknown, undefined, boolean>;
  5. readonly underline: import("element-plus/es/utils").EpPropFinalized<readonly [BooleanConstructor, StringConstructor], boolean | "always" | "never" | "hover", unknown, undefined, boolean>;
  6. readonly disabled: BooleanConstructor;
  7. readonly href: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  8. readonly target: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string) | (() => string) | ((new (...args: any[]) => string) | (() => string))[], unknown, unknown, "_self", boolean>;
  9. readonly icon: {
  10. readonly type: PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>;
  11. readonly required: false;
  12. readonly validator: ((val: unknown) => boolean) | undefined;
  13. __epPropKey: true;
  14. };
  15. };
  16. export type LinkProps = ExtractPropTypes<typeof linkProps>;
  17. export type LinkPropsPublic = __ExtractPublicPropTypes<typeof linkProps>;
  18. export declare const linkEmits: {
  19. click: (evt: MouseEvent) => boolean;
  20. };
  21. export type LinkEmits = typeof linkEmits;
  22. export type LinkInstance = InstanceType<typeof Link> & unknown;
  23. export interface LinkConfigContext {
  24. type?: string;
  25. underline?: string | boolean;
  26. }