Files
discord-clone/node_modules/unenv/runtime/npm/whatwg-url.d.ts
2023-01-03 09:29:04 -06:00

23 lines
947 B
TypeScript

export declare const URL: {
new (url: string | URL, base?: string | URL): URL;
prototype: URL;
createObjectURL(obj: Blob | MediaSource): string;
revokeObjectURL(url: string): void;
};
export declare const URLSearchParams: {
new (init?: string | URLSearchParams | Record<string, string> | string[][]): URLSearchParams;
prototype: URLSearchParams;
toString(): string;
};
export declare const parseURL: () => any;
export declare const basicURLParse: () => any;
export declare const serializeURL: () => any;
export declare const serializeHost: () => any;
export declare const serializeInteger: () => any;
export declare const serializeURLOrigin: () => any;
export declare const setTheUsername: () => any;
export declare const setThePassword: () => any;
export declare const cannotHaveAUsernamePasswordPort: () => any;
export declare const percentDecodeBytes: () => any;
export declare const percentDecodeString: () => any;