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
/
dist
/
src
/
NextFunction.d.ts
3 lines
(2 loc)
•
132 B
TypeScript
View Raw
1
2
3
export
declare
type
NextFunction
<N> =
(
err
:
any
,
nxtLocals
: N
) =>
void
;
export
declare
type
VoidNextFunction
=
(
err
?:
any
) =>
void
;