Interface ParameterManager<T>

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

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

Type Parameters

Hierarchy (View Summary)

Methods

Properties

Methods

Properties

The state relevant to the ParameterManager sub-controller.