///
export declare class HttpBaseResponse {
private readonly _statusCode;
private readonly _headers;
private readonly _baseResponseDto;
private readonly _streamList?;
private readonly _responseContent?;
constructor(params: {
statusCode: number;
headers: {
[key: string]: string;
};
baseResponseDto: T;
streamList?: NodeJS.ReadableStream[];
responseContent?: NodeJS.ReadableStream | string;
});
get statusCode(): number;
get headers(): {
[key: string]: string;
};
get baseResponseDto(): T;
get streamList(): NodeJS.ReadableStream[] | undefined;
get responseContent(): NodeJS.ReadableStream | string | undefined;
}