@fluyappgo/commons-backend
Advanced tools
Comparing version 1.0.25 to 1.0.26
@@ -5,4 +5,4 @@ export declare class HttpResponse { | ||
metadata?: any; | ||
message?: String; | ||
constructor(code: String, data: any, metadata?: any, message?: String); | ||
message?: any; | ||
constructor(code: String, data: any, metadata?: any, message?: any); | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.HttpResponse = void 0; | ||
var HttpResponse = /** @class */ (function () { | ||
function HttpResponse(code, data, metadata, message) { | ||
this.code = code; | ||
this.data = data; | ||
this.metadata = metadata; | ||
this.message = message; | ||
} | ||
return HttpResponse; | ||
}()); | ||
exports.HttpResponse = HttpResponse; |
{ | ||
"name": "@fluyappgo/commons-backend", | ||
"version": "1.0.25", | ||
"version": "1.0.26", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./build/index.js", |
39324
853