UNPKG
kex
Version:
latest (2.1.5)
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
Kex is a tiny library for state managenent in JavaScript projects
github.com/iceekey/kex
iceekey/kx
kex
/
dist
/
internal
/
state.d.ts
6 lines
(5 loc)
•
140 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
KxAction
}
from
'./action'
;
export
declare
type
KxState
<T =
any
> = {
actions
?:
KxAction
[];
cache
?:
object
; } &
Partial
<T>;