UNPKG

kex

Version:

Kex is a tiny library for state managenent in JavaScript projects

4 lines (3 loc) 156 B
import { KxAction } from './action'; import { KxModifier } from './modifier'; export declare type KxReducer<T = any> = (action: KxAction) => KxModifier<T>;