inversify-express-utils
Version:
Some utilities for the development of express applications with Inversify
8 lines • 308 B
TypeScript
import { Readable } from 'node:stream';
import { HttpContent } from './httpContent';
export declare class StreamContent extends HttpContent {
private readonly content;
constructor(content: Readable, mediaType: string);
readAsync(): Promise<Readable>;
}
//# sourceMappingURL=streamContent.d.ts.map