( req: HTTPRequestLike )
| 26 | } |
| 27 | |
| 28 | protected async parseRequestBody<T extends object = Record<string, unknown>>( |
| 29 | req: HTTPRequestLike |
| 30 | ): Promise<T> { |
| 31 | return (await parseJSONBody(req)) as T; |
| 32 | } |
| 33 | } |
nothing calls this directly
no test coverage detected