UNPKG

303 BTypeScriptView Raw
1/// <reference types="node" resolution-mode="require"/>
2import type { IncomingMessage } from 'node:http';
3import { BodyParserRawConfig } from '../types.js';
4/**
5 * Inflates request body
6 */
7export declare function parseText(req: IncomingMessage, options: Partial<BodyParserRawConfig>): Promise<string>;