UNPKG
@tunframework/tun
Version:
latest (2.0.7)
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
tun framework for node with typescript
github.com/tunframework/tun
tunframework/tun
@tunframework/tun
/
lib
/
types
/
TunComposable.d.ts
3 lines
(2 loc)
•
268 B
TypeScript
View Raw
1
2
3
export
declare
type
TunComposable
<
Context
> =
(
ctx
:
Context
,
next
: () =>
Promise
<
any
>
) =>
Promise
<
any
> |
void
;
export
declare
function
compose<
Context
>(
composables
:
TunComposable
<
Context
>[]):
(
ctx
:
Context
,
next
?:
TunComposable
<
Context
> |
undefined
) =>
Promise
<
any
>;