UNPKG

darian

Version:

A Naive state container for JavaScript apps

10 lines (9 loc) 225 B
interface actionT { type: string; data?: object; } declare type reducerT = (action: actionT) => object; interface reduceTreeT { [propName: string]: reducerT; } export { actionT, reducerT, reduceTreeT, };