UNPKG
@anyhowstep/ts-route-server
Version:
latest (4.0.0)
4.0.0
2.2.0
2.1.0
2.0.0
1.0.0
@anyhowstep/ts-route-server
/
src
/
NextFunction.ts
3 lines
(2 loc)
•
117 B
text/typescript
View Raw
1
2
3
export
type
NextFunction
<N> =
(
err
:
any
, nxtLocals : N
) =>
void
;
export
type
VoidNextFunction
=
(
err
?:
any
) =>
void
;