MCPcopy Create free account
hub / github.com/Distributive-Network/PythonMonkey / URL

Interface URL

python/pythonmonkey/builtin_modules/url.d.ts:19–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL)
18 */
19export 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
49export declare var URL: {
50 prototype: URL;

Callers 8

formatValueFunction · 0.65
formatPrimitiveFunction · 0.65
formatPropertyFunction · 0.65
XMLHttpRequestClass · 0.65
_requestMetadataMethod · 0.65
openMethod · 0.65
setRequestHeaderMethod · 0.65
sendMethod · 0.65

Calls

no outgoing calls

Tested by

no test coverage detected