anchor-link.d.ts 219 B

123456
  1. import type { ExtractPropTypes } from 'vue';
  2. export declare const anchorLinkProps: {
  3. title: StringConstructor;
  4. href: StringConstructor;
  5. };
  6. export type AnchorLinkProps = ExtractPropTypes<typeof anchorLinkProps>;