diff --git a/index.d.ts b/index.d.ts index 88a4c0fa30..8b7c47f050 100644 --- a/index.d.ts +++ b/index.d.ts @@ -17,6 +17,13 @@ export interface Action { type: any; } +/** + * This is the action type that combineReducers() sends to initialize + * reducers. + */ +export interface ReduxInitAction extends Action { + type: "@@redux/INIT"; +} /* reducers */