zents
Version:
ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.
9 lines (8 loc) • 304 B
TypeScript
/// <reference types="node" />
import { IncomingForm } from 'formidable';
import type { IncomingMessage } from 'http';
import type { ParsedBody } from '../types/interfaces';
export declare class BodyParser extends IncomingForm {
constructor();
parse(req: IncomingMessage): Promise<ParsedBody>;
}