method HonoRequest.prototype.textimport { HonoRequest } from "https://dotland.deno.dev/x/hono@v4.2.2/request.ts"; text(): Promise<string>.text() can parse Request body of type text/plain ExamplesExample 1 app.post('/entry', async (c) => { const body = await c.req.text() }) ReturnsPromise<string>