@fmorais/ihttp-response
v0.0.4
Published
Encapsulate Angular/TS Interface within the library for team sharing interface of HttpResponse with a specific pattern and generics.
Downloads
5
Readme
Sample library interface only
Encapsulate Angular/TS Interface within the library for team sharing interface of HttpResponse with a specific pattern and generics.
interface IHttpResponse<T>{
status: string;
messages: string[];
data?: T;
statusCode: number;
}