Interface ParameterManager<T>

The ParameterManager sub-controller allows restoring parameters that affect the results (e.g., from the URL).

interface ParameterManager<T> {
    state: ParameterManagerState<T>;
    subscribe(listener: (() => void)): Unsubscribe;
    synchronize(parameters: T): void;
}

Type Parameters

Hierarchy (view full)

Methods

Properties

Methods

Properties

The state relevant to the ParameterManager sub-controller.