@publish-cms/type
Version:
Publish CMS Core Type
30 lines (29 loc) • 957 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ECustomGridType = exports.ICustomGrid = exports.EOptionKey = exports.ICallToAction = exports.IOption = void 0;
var IOption = /** @class */ (function () {
function IOption() {
}
return IOption;
}());
exports.IOption = IOption;
var ICallToAction = /** @class */ (function () {
function ICallToAction() {
}
return ICallToAction;
}());
exports.ICallToAction = ICallToAction;
var EOptionKey;
(function (EOptionKey) {
EOptionKey["CUSTOM_GRID"] = "CUSTOM_GRID";
})(EOptionKey = exports.EOptionKey || (exports.EOptionKey = {}));
var ICustomGrid = /** @class */ (function () {
function ICustomGrid() {
}
return ICustomGrid;
}());
exports.ICustomGrid = ICustomGrid;
var ECustomGridType;
(function (ECustomGridType) {
ECustomGridType["DEFAULT"] = "DEFAULT";
})(ECustomGridType = exports.ECustomGridType || (exports.ECustomGridType = {}));