method HonoRequest.prototype.jsonimport { HonoRequest } from "https://dotland.deno.dev/x/hono@v4.2.2/request.ts"; json<T = any>(): Promise<T>.json() can parse Request body of type application/json ExamplesExample 1 app.post('/entry', async (c) => { const body = await c.req.json() }) Type ParametersoptionalT = anyReturnsPromise<T>