method HonoRequest.prototype.textimport { HonoRequest } from "https://dotland.deno.dev/x/hono@v4.1.0/mod.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>