/// export interface IResponseObject { status: number; response: string; lines: string[]; } export default class Response { readonly status: number; readonly response: string; private readonly lines; constructor(incoming: IResponseObject); static parseResponse(chunk: Buffer): Response; getLines(): string[]; getStatus(): number; getResponse(): string; }