export interface BasicReducer { (prevState: T, newState: Partial): T; } export const basicReducer = (prevState: T, newState: Partial): T => ({ ...prevState, ...newState, });