kentico-cloud-delivery
Version:
Official Kentico Cloud Delivery SDK
21 lines • 883 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var ElementResponses;
(function (ElementResponses) {
var ViewContentTypeElementResponse = /** @class */ (function () {
/**
* Response containing content type element
*
* @constructor
* @param {GenericElement} element - Content type element
* @param {ICloudResponseDebug} debug - Debug information from the response
*/
function ViewContentTypeElementResponse(element, debug) {
this.element = element;
this.debug = debug;
}
return ViewContentTypeElementResponse;
}());
ElementResponses.ViewContentTypeElementResponse = ViewContentTypeElementResponse;
})(ElementResponses = exports.ElementResponses || (exports.ElementResponses = {}));
//# sourceMappingURL=responses.js.map
;