* The `toString()` method of the URL interface returns a string containing the complete URL. * * @example * ```ts * const myURL = new URL('https://foo.example.org/bar'); * console.log(myURL.toString()); // Logs "https://foo.example.org/bar" * ``` * * @see https://developer.m
()
| 7107 | * @see https://developer.mozilla.org/docs/Web/API/URL/toString |
| 7108 | */ |
| 7109 | toString(): string; |
| 7110 | |
| 7111 | /** |
| 7112 | * The `origin` property of the URL interface is a string that represents the origin of the URL, that is the {@linkcode URL.protocol}, {@linkcode URL.host}, and {@linkcode URL.port}. |
no outgoing calls