link.vue.d.ts 1.1 KB

1234567891011121314151617181920212223242526272829
  1. import { LinkProps } from "./link.js";
  2. import * as vue from "vue";
  3. //#region ../../packages/components/link/src/link.vue.d.ts
  4. declare var __VLS_12: {}, __VLS_14: {};
  5. type __VLS_Slots = {} & {
  6. default?: (props: typeof __VLS_12) => any;
  7. } & {
  8. icon?: (props: typeof __VLS_14) => any;
  9. };
  10. declare const __VLS_base: vue.DefineComponent<LinkProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
  11. click: (evt: MouseEvent) => void;
  12. }, string, vue.PublicProps, Readonly<LinkProps> & Readonly<{
  13. onClick?: ((evt: MouseEvent) => any) | undefined;
  14. }>, {
  15. type: "primary" | "success" | "warning" | "info" | "danger" | "default";
  16. underline: boolean | "always" | "never" | "hover";
  17. target: "_blank" | "_parent" | "_self" | "_top" | (string & NonNullable<unknown>);
  18. href: string;
  19. }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
  20. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  21. declare const _default: typeof __VLS_export;
  22. type __VLS_WithSlots<T, S> = T & {
  23. new (): {
  24. $slots: S;
  25. };
  26. };
  27. //#endregion
  28. export { _default };