The UrlManager controller can parse an url fragment to extract search parameters which affect the search response.

Example: url-manager.ts

interface UrlManager {
    state: UrlManagerState;
    subscribe(listener: () => void): Unsubscribe;
    synchronize(fragment: string): void;
}

Hierarchy (View Summary)

Methods

Properties

Methods

Properties

The state relevant to the UrlManager controller.