UNPKG

inversify-express-utils

Version:

Some utilities for the development of express applications with Inversify

7 lines 256 B
import type { OutgoingHttpHeaders } from 'node:http'; export declare abstract class HttpContent { private readonly _headers; get headers(): OutgoingHttpHeaders; abstract readAsync(): Promise<unknown>; } //# sourceMappingURL=httpContent.d.ts.map