Class TraversalBaseStore<TState, TService>

A base class for Redux Saga stores.

Type Parameters

Hierarchy

Constructors

Properties

hraService: undefined | HealthRiskAssessmentService
otService: undefined | OnlineTriageService
sagaMiddleware: SagaMiddleware<Record<string, unknown>>

The saga middleware running the sagas.

setToken: ((token: null | string) => void)

Type declaration

    • (token: null | string): void
    • Parameters

      • token: null | string

      Returns void

store: Store<CombinedState<TState>, AnyAction> & {
    dispatch: unknown;
}

The redux store.

traversalService: TService