element-plus
Version:
A Component Library for Vue 3
15 lines (14 loc) • 343 B
TypeScript
import { ExtractPublicPropTypes } from "vue";
//#region ../../packages/components/anchor/src/anchor-link.d.ts
interface AnchorLinkProps {
/**
* @description the text content of the anchor link
*/
title?: string;
/**
* @description The address of the anchor link
*/
href?: string;
}
//#endregion
export { AnchorLinkProps };