Interface HistoryOptions

interface HistoryOptions {
    base?: string | URL;
    searchParamsAdapter?: SearchParamsAdapter;
}

Hierarchy (view full)

Properties

base?: string | URL

A default URL base used by History.toURL.

searchParamsAdapter?: SearchParamsAdapter

An adapter that extracts params from a URL search string and stringifies them back. By default, an adapter that relies on URLSearchParams is used.