buildUrl( override: | string | Readonly< PartialWithUndefined< { hash?: string; hostname?: string; password?: string; pathname?: string; paths?: readonly string[]; port?: string | number; protocol?: string; search?: string | Readonly<SearchParamsInput>; username?: string; }, >, > | URL, options?: Readonly< { encoding?: Encode | Decode | None; searchParamStrategy?: Clear | Replace | Append; }, >,): Readonly Parameters
- override:
| string
| Readonly<
PartialWithUndefined<
{
hash?: string;
hostname?: string;
password?: string;
pathname?: string;
paths?: readonly string[];
port?: string
| number;
protocol?: string;
search?: string | Readonly<SearchParamsInput>;
username?: string;
},
>,
>
| URL Optional
options: Readonly<
{
encoding?: Encode
| Decode
| None;
searchParamStrategy?: Clear | Replace | Append;
},
>
Returns Readonly
buildUrl( baseUrl: | string | URL | Readonly< Readonly< { fullPath: string; hash: string; host: string; hostname: string; href: string; origin: string; password: string; pathname: string; paths: readonly string[]; port: string; protocol: string; search: string; searchParams: Readonly<Record<string, readonly string[]>>; username: string; }, >, >, override: | string | Readonly< PartialWithUndefined< { hash?: string; hostname?: string; password?: string; pathname?: string; paths?: readonly string[]; port?: string | number; protocol?: string; search?: string | Readonly<SearchParamsInput>; username?: string; }, >, > | URL, options?: Readonly< { encoding?: Encode | Decode | None; searchParamStrategy?: Clear | Replace | Append; }, >,): Readonly Parameters
- baseUrl:
| string
| URL
| Readonly<
Readonly<
{
fullPath: string;
hash: string;
host: string;
hostname: string;
href: string;
origin: string;
password: string;
pathname: string;
paths: readonly string[];
port: string;
protocol: string;
search: string;
searchParams: Readonly<Record<string, readonly string[]>>;
username: string;
},
>,
> - override:
| string
| Readonly<
PartialWithUndefined<
{
hash?: string;
hostname?: string;
password?: string;
pathname?: string;
paths?: readonly string[];
port?: string
| number;
protocol?: string;
search?: string | Readonly<SearchParamsInput>;
username?: string;
},
>,
>
| URL Optional
options: Readonly<
{
encoding?: Encode
| Decode
| None;
searchParamStrategy?: Clear | Replace | Append;
},
>
Returns Readonly
Builds a URL either from an object of URL parts or from overriding a base URL string.