UNPKG

kex

Version:

Kex is a tiny library for state managenent in JavaScript projects

6 lines (5 loc) 140 B
import { KxAction } from './action'; export declare type KxState<T = any> = { actions?: KxAction[]; cache?: object; } & Partial<T>;