frontend/.pnpm-store/v3/files/46/8841891fbd9ac75ad3eeec0fe76fe5013204e94744f84f387fd220f7e930ef26284bc3ffad6fd699aea339a73bba10760c689f6a20d179951eb56ec50ce89e

15 lines
357 B
Plaintext

import { URL } from 'url';
export interface URLOptions {
href?: string;
protocol?: string;
host?: string;
hostname?: string;
port?: string | number;
pathname?: string;
search?: string;
searchParams?: unknown;
path?: string;
}
declare const _default: (origin: string, options: URLOptions) => URL;
export default _default;