UNPKG

lin-cms-test

Version:

The core library of Lin CMS, this package is just for test!

10 lines (9 loc) 294 B
import { Context } from "koa"; /** * 全局异常处理中间件 */ export declare const error: (err: Error, ctx: Context) => void; /** * 全局日志记录,且判断状态码,发出相应的异常 */ export declare const log: (ctx: Context, next: () => Promise<any>) => Promise<void>;