UNPKG

darian

Version:

A Naive state container for JavaScript apps

17 lines (13 loc) 223 B
interface actionT { type: string; data?: object; } type reducerT = (action: actionT) => object; interface reduceTreeT { [propName: string]: reducerT; } export { actionT, reducerT, reduceTreeT, };