astro-ghostcms/.pnpm-store/v3/files/88/2ead153b9a488b8d98fa77c9407...

14 lines
369 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/// <reference types="node" resolution-mode="require"/>
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;