| 17 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL) |
| 18 | */ |
| 19 | export interface URL { |
| 20 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hash) */ |
| 21 | hash: string; |
| 22 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/host) */ |
| 23 | host: string; |
| 24 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hostname) */ |
| 25 | hostname: string; |
| 26 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/href) */ |
| 27 | href: string; |
| 28 | toString(): string; |
| 29 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/origin) */ |
| 30 | readonly origin: string; |
| 31 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/password) */ |
| 32 | password: string; |
| 33 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/pathname) */ |
| 34 | pathname: string; |
| 35 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/port) */ |
| 36 | port: string; |
| 37 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/protocol) */ |
| 38 | protocol: string; |
| 39 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/search) */ |
| 40 | search: string; |
| 41 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/searchParams) */ |
| 42 | readonly searchParams: URLSearchParams; |
| 43 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/username) */ |
| 44 | username: string; |
| 45 | /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/toJSON) */ |
| 46 | toJSON(): string; |
| 47 | } |
| 48 | |
| 49 | export declare var URL: { |
| 50 | prototype: URL; |
no outgoing calls
no test coverage detected