frontend/.pnpm-store/v3/files/ae/b57301c58b472f9a1d41be16273d61054129cdd0ed52f43b654c3b8c147afc92bf3deb7fccd045b0139175f9d3218df9aeafff71383d6cbba9d1755e756581

15 lines
401 B
Plaintext

/// <reference types="node" resolution-mode="require"/>
import { URL } from 'node:url';
export type URLOptions = {
href?: string;
protocol?: string;
host?: string;
hostname?: string;
port?: string | number;
pathname?: string;
search?: string;
searchParams?: unknown;
path?: string;
};
export default function optionsToUrl(origin: string, options: URLOptions): URL;