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
/
createStore.d.ts
5 lines
(4 loc)
•
180 B
TypeScript
View Raw
1
2
3
4
5
import
Store
from
"./Store"
;
import
{ actionT, reducerT }
from
"./type"
;
declare
const
createStore
:
(
reducer
: reducerT,
action
?: actionT
) =>
Store
;
export
default
createStore;