/** * Represents the `IRouterLinkLike` interface. * * @public */ export interface IRouterLinkLike { /** * This attribute instructs browsers to download a URL instead of navigating to * it, so the user will be prompted to save it as a local file. If the attribute * has a value, it is used as the pre-filled file name in the Save prompt * (the user can still change the file name if they want). */ download?: string | undefined; /** * Contains a URL or a URL fragment that the hyperlink points to. * If this property is set, an anchor tag will be rendered. */ href?: string | undefined; /** * Specifies the relationship of the target object to the link object. * The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types). */ rel?: string | undefined; /** * Specifies where to display the linked URL. * Only applies when an `href` is provided. * Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`. */ target?: string | undefined; origin?: string | null; query?: Record | undefined; /** * this property is only filled when it is a real HTMLAnchorElement */ search?: string | undefined; /** * this property is only filled when it is a real HTMLAnchorElement */ pathname: string; } //# sourceMappingURL=IRouterLinkLike.d.ts.map