UNPKG
darian
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
A Naive state container for JavaScript apps
github.com/Casper-MAGI/Darian
Casper-MAGI/Darian
darian
/
src
/
type.ts
17 lines
(13 loc)
•
223 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
interface
actionT {
type
:
string
;
data
?:
object
; }
type
reducerT =
(
action
: actionT
) =>
object
;
interface
reduceTreeT { [
propName
:
string
]: reducerT; }
export
{ actionT, reducerT, reduceTreeT, };