UNPKG
yarfl
Version:
latest (0.1.1)
next (0.5.0)
0.5.0
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
0.0.3
0.0.2
0.0.1
0.0.0
Yet Another Redux Forms Library
axelyung.github.io/yarfl/
axelyung/yarfl
yarfl
/
typings
/
reducers
/
index.d.ts
3 lines
(2 loc)
•
238 B
TypeScript
View Raw
1
2
3
import
{
ActionUnknown
,
CompleteConfig
,
FormState
}
from
'../typings'
;
export
declare
const
createReducer
: <S
extends
object
>
(
config
:
CompleteConfig
<S>,
initialState
:
FormState
<S>
) =>
import
(
"redux"
).
Reducer
<
FormState
<S>,
ActionUnknown
>;