UNPKG
boa-core
Version:
latest (0.8.0)
0.8.0
0.7.0
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
The core library for b-o-a
github.com/bouzuya/boa-core
bouzuya/boa-core
boa-core
/
lib
/
handler.d.ts
6 lines
(5 loc)
•
206 B
TypeScript
View Raw
1
2
3
4
5
6
import
{ A }
from
'./a'
;
import
{
HandlerOptions
}
from
'./handler-options'
;
import
{ O }
from
'./o'
;
declare
type
Handler
=
(
action$
: O<A<
any
>>,
options
?:
HandlerOptions
) =>
O<A<
any
>>;
export
{
Handler
};