我正在将 koa 与 Typescript 一起使用。我还使用了 koa 中间件 koa-static 和 koa-bodyparser。我有类型定义包@types/koa
,@types/koa-bodyparser
并@types/koa-static
安装。当我运行时,tsc
我收到以下错误:
ERROR in [default] ./node_modules/@types/koa-bodyparser/index.d.ts:69:8
Namespace 'Koa' has no exported member 'Middleware'.
和
ERROR in [default] ./node_modules/@types/koa-static/index.d.ts:45:8
Namespace 'Koa' has no exported member 'Middleware'.
我怀疑这个错误与我自己的代码有关。任何帮助表示赞赏。