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
/
dist
/
Store.d.ts
9 lines
(8 loc)
•
236 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ actionT, reducerT }
from
"./type"
;
declare
class
Store
{
state
:
object
;
reducer
: reducerT;
constructor
(
reducer
: reducerT,
action
: actionT
);
dispatch
:
(
action
: actionT
) =>
object
; }
export
default
Store
;