happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
20 lines (19 loc) • 384 B
text/typescript
/**
* HTMLHyperlinkElementUtils.
*
* Reference:
* https://html.spec.whatwg.org/multipage/links.html#htmlhyperlinkelementutils.
*/
export default interface IHTMLHyperlinkElement {
readonly origin: string;
href: string;
protocol: string;
username: string;
password: string;
host: string;
hostname: string;
port: string;
pathname: string;
search: string;
hash: string;
}