20 lines
468 B
TypeScript
20 lines
468 B
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;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=IHTMLHyperlinkElement.d.ts.map
|