wordxml-builder
Version:
Librería TypeScript para construir documentos XML compatibles con Microsoft Word
62 lines (61 loc) • 2.47 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BorderStyle = exports.ListStyle = exports.ParagraphAlignment = void 0;
/* eslint-disable no-shadow */
/* eslint-disable no-unused-vars */
/**
* Alineación del texto en un párrafo
*/
var ParagraphAlignment;
(function (ParagraphAlignment) {
ParagraphAlignment["Left"] = "left";
ParagraphAlignment["Center"] = "center";
ParagraphAlignment["Right"] = "right";
ParagraphAlignment["Justify"] = "justify";
ParagraphAlignment["Distributed"] = "distributed";
})(ParagraphAlignment || (exports.ParagraphAlignment = ParagraphAlignment = {}));
/**
* Estilo de viñeta o numeración
*/
var ListStyle;
(function (ListStyle) {
ListStyle["None"] = "none";
ListStyle["Bullet"] = "bullet";
ListStyle["Number"] = "number";
ListStyle["Decimal"] = "decimal";
ListStyle["LowerRoman"] = "lowerRoman";
ListStyle["UpperRoman"] = "upperRoman";
ListStyle["LowerLetter"] = "lowerLetter";
ListStyle["UpperLetter"] = "upperLetter";
})(ListStyle || (exports.ListStyle = ListStyle = {}));
/**
* Estilo de borde
*/
var BorderStyle;
(function (BorderStyle) {
BorderStyle["None"] = "none";
BorderStyle["Single"] = "single";
BorderStyle["Double"] = "double";
BorderStyle["Dotted"] = "dotted";
BorderStyle["Dashed"] = "dashed";
BorderStyle["DotDash"] = "dotDash";
BorderStyle["DotDotDash"] = "dotDotDash";
BorderStyle["Triple"] = "triple";
BorderStyle["ThinThickSmallGap"] = "thinThickSmallGap";
BorderStyle["ThickThinSmallGap"] = "thickThinSmallGap";
BorderStyle["ThinThickThinSmallGap"] = "thinThickThinSmallGap";
BorderStyle["ThinThickMediumGap"] = "thinThickMediumGap";
BorderStyle["ThickThinMediumGap"] = "thickThinMediumGap";
BorderStyle["ThinThickThinMediumGap"] = "thinThickThinMediumGap";
BorderStyle["ThinThickLargeGap"] = "thinThickLargeGap";
BorderStyle["ThickThinLargeGap"] = "thickThinLargeGap";
BorderStyle["ThinThickThinLargeGap"] = "thinThickThinLargeGap";
BorderStyle["Wave"] = "wave";
BorderStyle["DoubleWave"] = "doubleWave";
BorderStyle["DashSmallGap"] = "dashSmallGap";
BorderStyle["DashDotStroked"] = "dashDotStroked";
BorderStyle["ThreeDEmboss"] = "threeDEmboss";
BorderStyle["ThreeDEngrave"] = "threeDEngrave";
BorderStyle["Outset"] = "outset";
BorderStyle["Inset"] = "inset";
})(BorderStyle || (exports.BorderStyle = BorderStyle = {}));