UNPKG
jinbi-utils
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
这是一个实用工具库,包含了多个常用的功能模块。以下是各个模块的详细说明:
jinbi-utils
/
types
/
middleware
/
requestLogger.middware.d.ts
8 lines
(7 loc)
•
213 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * 日志记录中间件 * *
@param
systemName 系统名称 *
@returns
返回一个中间件函数 */
export
declare
const
recordLogMiddleWare
:
(
systemName
:
any
) =>
(
ctx
:
any
,
next
:
any
) =>
Promise
<
void
>;