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
/
Request.ts
8 lines
(6 loc)
•
147 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import * as express
from
"express"; export interface Request<
P
,
B
,
Q
> extends express
.Request
{ params : P;
body
: B; query : Q; }