UNPKG

@adonisjs/bodyparser

Version:

BodyParser middleware for AdonisJS http server to read and parse request body

7 lines (6 loc) 247 B
import type { IncomingMessage } from 'node:http'; import { BodyParserRawConfig } from '../types.js'; /** * Inflates request body */ export declare function parseText(req: IncomingMessage, options: Partial<BodyParserRawConfig>): Promise<string>;