pptx-automizer
Version:
A template based pptx generator
19 lines • 785 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ElementSubtype = exports.ElementType = void 0;
var ElementType;
(function (ElementType) {
ElementType["Chart"] = "Chart";
ElementType["Image"] = "Image";
ElementType["Shape"] = "Generic";
ElementType["OLEObject"] = "OLEObject";
ElementType["Hyperlink"] = "Hyperlink";
})(ElementType = exports.ElementType || (exports.ElementType = {}));
var ElementSubtype;
(function (ElementSubtype) {
ElementSubtype["chart"] = "chart";
ElementSubtype["chartEx"] = "chartEx";
ElementSubtype["oleObject"] = "oleObject";
ElementSubtype["hyperlink"] = "hyperlink";
})(ElementSubtype = exports.ElementSubtype || (exports.ElementSubtype = {}));
//# sourceMappingURL=element-type.js.map