-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpptelement.js
37 lines (37 loc) · 1.46 KB
/
pptelement.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var BorderType;
(function (BorderType) {
BorderType["dotted"] = "dotted";
BorderType["dashed"] = "dashed";
BorderType["solid"] = "solid";
})(BorderType = exports.BorderType || (exports.BorderType = {}));
var FontAttributes;
(function (FontAttributes) {
FontAttributes[FontAttributes["Bold"] = 0] = "Bold";
FontAttributes[FontAttributes["Italics"] = 1] = "Italics";
FontAttributes[FontAttributes["Underline"] = 2] = "Underline";
FontAttributes[FontAttributes["StrikeThrough"] = 3] = "StrikeThrough";
})(FontAttributes = exports.FontAttributes || (exports.FontAttributes = {}));
var TextAlignment;
(function (TextAlignment) {
TextAlignment["Center"] = "center";
TextAlignment["Left"] = "left";
TextAlignment["Right"] = "right";
TextAlignment["Justified"] = "justify";
})(TextAlignment = exports.TextAlignment || (exports.TextAlignment = {}));
var SpecialityType;
(function (SpecialityType) {
SpecialityType["Image"] = "Image";
SpecialityType["None"] = "None";
})(SpecialityType = exports.SpecialityType || (exports.SpecialityType = {}));
var LinkType;
(function (LinkType) {
LinkType["Asset"] = "Asset";
LinkType["External"] = "External";
})(LinkType = exports.LinkType || (exports.LinkType = {}));
var FillType;
(function (FillType) {
FillType["Image"] = "Image";
FillType["Solid"] = "Solid";
})(FillType = exports.FillType || (exports.FillType = {}));