UNPKG
mock-service-plugin
Version:
latest (26.327.0)
26.327.0
1.8.8
1.8.7
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.7.9
1.7.0
1.6.11
1.6.10
1.6.8
1.6.3
1.6.1
1.6.0
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.1
1.4.0
1.3.1
1.3.0
1.2.2
1.2.0
1.1.9
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
模拟后端接口服务
github.com/bianliuzhu/mock-service-plugin
bianliuzhu/mock-service-plugin
mock-service-plugin
/
lib
/
src
/
routes.d.ts
3 lines
(2 loc)
•
225 B
TypeScript
View Raw
1
2
3
import
{
Request
,
Response
,
NextFunction
}
from
"express"
;
export
declare
function
createRoutes
(
mockPath
:
string
):
(
req
:
Request
,
res
:
Response
,
next
:
NextFunction
) =>
Promise
<
Response
<
any
,
Record
<
string
,
any
>> |
undefined
>;