UNPKG
overmind-forms
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Forms implementation for overmind
github.com/garth/overmind-forms
garth/overmind-forms
overmind-forms
/
lib
/
actions.d.ts
11 lines
(10 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Action
}
from
'overmind'
;
import
{
FormField
}
from
'./formField'
;
export
declare
const
setField
:
Action
<{
field
:
FormField
;
value
:
string
; }>;
export
declare
const
resetField
:
Action
<{
field
:
FormField
;
value
?:
string
; }>;