UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
9 lines (7 loc) 193 B
export interface BasicReducer<T> { (prevState: T, newState: Partial<T>): T; } export const basicReducer = <T>(prevState: T, newState: Partial<T>): T => ({ ...prevState, ...newState, });