Comparing version 0.0.6-alpha.1 to 0.0.6-alpha.2
@@ -6,2 +6,4 @@ "use strict"; | ||
exports.ApiEdgeQuery = ApiEdgeQuery_1.ApiEdgeQuery; | ||
var ApiEdgeError_1 = require("./src/ApiEdgeError"); | ||
exports.ApiEdgeError = ApiEdgeError_1.ApiEdgeError; | ||
//# sourceMappingURL=index.js.map |
export {ApiEdgeDefinition} from "./src/ApiEdgeDefinition"; | ||
export {ApiEdgeRelation} from "./src/ApiEdgeRelation"; | ||
export {ApiEdgeQueryType} from "./src/ApiEdgeQueryType"; | ||
export {ApiEdgeQuery} from "./src/ApiEdgeQuery"; | ||
export {ApiEdgeQuery} from "./src/ApiEdgeQuery"; | ||
export {ApiEdgeError} from "./src/ApiEdgeError"; |
{ | ||
"name": "api-core", | ||
"version": "0.0.6-alpha.1", | ||
"version": "0.0.6-alpha.2", | ||
"description": "Core classes for the api-provider package.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
"use strict"; | ||
var ApiEdgeError = (function () { | ||
function ApiEdgeError(status, message) { | ||
class ApiEdgeError { | ||
constructor(status, message) { | ||
this.status = status; | ||
this.message = message; | ||
} | ||
return ApiEdgeError; | ||
}()); | ||
} | ||
exports.ApiEdgeError = ApiEdgeError; | ||
//# sourceMappingURL=ApiEdgeError.js.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
145364
2636