program-item.js
753 Bytes
"use strict";
exports.PROGRAM_ITEM_TYPE_SLIDESHOW = "slideshow";
exports.PROGRAM_ITEM_TYPE_VIDEO = "video";
var ProgramItem = (function () {
function ProgramItem() {
}
Object.defineProperty(ProgramItem.prototype, "type", {
get: function () {
return this._type;
},
set: function (t) {
this._type = t;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ProgramItem.prototype, "data", {
get: function () {
return this._data;
},
set: function (d) {
this._data = d;
},
enumerable: true,
configurable: true
});
return ProgramItem;
}());
exports.ProgramItem = ProgramItem;