wuxu

Results 1 issues of wuxu

为何只有 body 不能设置类型,难道只能使用 `request.body as {...}` 方式吗,希望解决下面的使用出现的类型丢失问题 ![image](https://github.com/koajs/router/assets/46241389/9b4e6527-16ba-42a6-a733-953a6fee01b7) 源代码如下("@types/koa": "2.13.10", "@types/koa__router": "12.0.3") ``` typescript import Router from "@koa/router" const router = new Router() interface KoaState { a: string } interface...

bug