/** * Class for role objects that use the a HTML tag. */ export default class LinkData extends AccessibilityObject { /** * Sets the download property of the link item * @access public * @param {String} filename - Specifies the file name to download the file with */ set download(arg: string); /** * Gets the download enum of the link item * @access public * @returns {String} File name to download the file with, undefined if this field is unset */ get download(): string; /** * Sets the href of the link item * @access public * @param {String} url - Specifies the location of the linked document */ set href(arg: string); /** * Retrieves the href of the link item * @access public * @returns {String} the location of the linked document, undefined if this field is unset */ get href(): string; /** * Sets the hreflang of the link item * @access public * @param {String} lang - Specifies the language of the text in the linked document */ set hrefLang(arg: string); /** * Retrieves the hreflang of the link item * @access public * @returns {String} the language of the text in the linked document, undefined * if this field is unset */ get hrefLang(): string; /** * Sets the media of the link item * @access public * @param {String} media - Specifies on what device the linked document is optimized for */ set media(arg: string); /** * Retrieves the media of the link item * @access public * @returns {String} what device the linked document is optimized for, undefined * if this field is unset */ get media(): string; /** * Sets the rel of the link item * @access public * @param {String} rel - Specifies the relationship between the current document * and the linked document */ set rel(arg: string); /** * Retrieves the rel of the link item * @access public * @returns {String} the relationship between the current document and the linked document, * undefined if this field is unset */ get rel(): string; /** * Sets the target of the link item * @access public * @param {String} loc - Specifies where to open the linked document */ set target(arg: string); /** * Retrieves the target of the link item * @access public * @returns {String} where to open the linked document, undefined if this field is unset */ get target(): string; /** * Sets the type of the link item * @access public * @param {String} media - Specifies the media type of the linked document */ set type(arg: string); /** * Retrieves the type of the link item * @access public * @returns {String} the media type of the linked document, undefined if this field is unset */ get type(): string; } import AccessibilityObject from "./AccessibilityObject";