Encapsulate Angular/TS Interface within the library for team sharing interface of HttpResponse with a specific pattern and generics.
npm install @fmorais/ihttp-response````
interface IHttpResponse
status: string;
messages: string[];
data?: T;
statusCode: number;
}