UNPKG

kex

Version:

Kex is a tiny library for state managenent in JavaScript projects

3 lines (2 loc) 116 B
import { KxChange } from './change'; export declare type KxListener<T = any> = (state: T, change: KxChange) => any;