mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 18:19:40 +00:00
22 lines
899 B
TypeScript
22 lines
899 B
TypeScript
import { ActionCreatorGeneric } from 'redux-typed';
|
|
import * as WeatherForecasts from './WeatherForecasts';
|
|
import * as Counter from './Counter';
|
|
|
|
// The top-level state object
|
|
export interface ApplicationState {
|
|
counter: Counter.CounterState,
|
|
weatherForecasts: WeatherForecasts.WeatherForecastsState
|
|
}
|
|
|
|
// Whenever an action is dispatched, Redux will update each top-level application state property using
|
|
// the reducer with the matching name. It's important that the names match exactly, and that the reducer
|
|
// acts on the corresponding ApplicationState property type.
|
|
export const reducers = {
|
|
counter: Counter.reducer,
|
|
weatherForecasts: WeatherForecasts.reducer
|
|
};
|
|
|
|
// This type can be used as a hint on action creators so that its 'dispatch' and 'getState' params are
|
|
// correctly typed to match your store.
|
|
export type ActionCreator = ActionCreatorGeneric<ApplicationState>;
|