reducers: {
survey: Reducer<
{
currentSurveyStep: null
| string;
surveyAnswers: Record<string, SurveyAnswers>;
surveySubmitting: Record<string, boolean>;
},
AnyAction,
>;
} = ...
Type Declaration
survey: Reducer<
{
currentSurveyStep: null
| string;
surveyAnswers: Record<string, SurveyAnswers>;
surveySubmitting: Record<string, boolean>;
},
AnyAction,
>