@office-open/docx 0.6.9 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -78,36 +78,41 @@ Check the [demo folder](./demo) for 100+ working examples covering every feature
78
78
 
79
79
  Performance comparison against original `docx` (9.6.1) package (higher ops/s is better, Windows 11 / Node 24).
80
80
 
81
- DEFLATE = compressed (default), STORE = no compression. Both libraries use DEFLATE.
81
+ **Default** = XML DEFLATE level 1 (SuperFast, matching MS Office) + media STORE. **All STORE** = no compression (`{ compression: { xml: 0 } }`). **docx** (async) always uses DEFLATE for ALL entries including images (via JSZip, hardcoded, no STORE option).
82
+
83
+ ```typescript
84
+ // Default (matches MS Office)
85
+ await Packer.toBuffer(doc);
86
+ // All STORE (no compression)
87
+ await Packer.toBuffer(doc, { compression: { xml: 0 } });
88
+ ```
82
89
 
83
90
  **Create + toBuffer (end-to-end)**
84
91
 
85
- | Scenario | DEFLATE sync | STORE sync | DEFLATE async | STORE async | docx |
86
- | ------------------------------------------------------- | -----------: | ----------: | ------------: | ----------: | --------: |
87
- | Simple (2 paragraphs) | 349 ops/s | 2,085 ops/s | 379 ops/s | 2,495 ops/s | 192 ops/s |
88
- | Styled paragraphs (20) | 477 ops/s | 1,983 ops/s | 511 ops/s | 1,918 ops/s | 236 ops/s |
89
- | Table (10×5) | 448 ops/s | 1,505 ops/s | 480 ops/s | 1,565 ops/s | 203 ops/s |
90
- | Full featured (header/footer/headings/table/paragraphs) | 326 ops/s | 992 ops/s | 380 ops/s | 1,100 ops/s | 163 ops/s |
92
+ | Scenario | Default sync | Default async | All STORE sync | All STORE async | docx |
93
+ | ------------------------------ | -----------: | ------------: | -------------: | --------------: | --------: |
94
+ | Simple (2p + 1 img) | 174 ops/s | 155 ops/s | 202 ops/s | 203 ops/s | 82 ops/s |
95
+ | Styled paragraphs (20) + 1 img | 179 ops/s | 146 ops/s | 198 ops/s | 198 ops/s | 86 ops/s |
96
+ | Table (10x5) | 949 ops/s | 565 ops/s | 1,830 ops/s | 1,867 ops/s | 190 ops/s |
97
+ | Full featured + 2 imgs | 94 ops/s | 89 ops/s | 102 ops/s | 100 ops/s | 57 ops/s |
91
98
 
92
99
  **Large Files — Create + toBuffer**
93
100
 
94
- | Scenario | DEFLATE sync | STORE sync | DEFLATE async | STORE async | docx |
95
- | ---------------------------- | -----------: | ----------: | ------------: | ----------: | ---------: |
96
- | 2000 paragraphs | 43.6 ops/s | 53.4 ops/s | 17.7 ops/s | 53.8 ops/s | 20.0 ops/s |
97
- | 200×10 table | 78.0 ops/s | 106.6 ops/s | 24.1 ops/s | 109.6 ops/s | 30.0 ops/s |
98
- | 20 sections × 100 paragraphs | 44.0 ops/s | 70.9 ops/s | 21.6 ops/s | 75.9 ops/s | 22.9 ops/s |
101
+ | Scenario | Default sync | Default async | All STORE sync | All STORE async | docx |
102
+ | ------------------------------ | -----------: | ------------: | -------------: | --------------: | ---------: |
103
+ | 2000 paragraphs + 20 images | 4.68 ops/s | 3.13 ops/s | 3.50 ops/s | 3.08 ops/s | 2.07 ops/s |
104
+ | 200x10 table | 64.9 ops/s | 62.6 ops/s | 69.7 ops/s | 72.6 ops/s | 19.5 ops/s |
105
+ | 20 sections x 100p + 40 images | 1.58 ops/s | 1.69 ops/s | 1.79 ops/s | 1.65 ops/s | 1.16 ops/s |
99
106
 
100
107
  **Large File (~100MB) — Mixed Content**
101
108
 
102
- 2000 paragraphs + 200 unique images (500KB each) + 100×10 table. Speedup is vs docx.
109
+ 500 styled paragraphs + 38 mixed-size images (1-5MB, 100MB total) + 50x10 table. Speedup is vs docx.
103
110
 
104
- | Method | Speed | Speedup |
105
- | ------------- | ---------: | -------: |
106
- | DEFLATE sync | 0.37 ops/s | **1.8x** |
107
- | STORE sync | 0.37 ops/s | **1.7x** |
108
- | DEFLATE async | 0.41 ops/s | **2.0x** |
109
- | STORE async | 0.42 ops/s | **2.0x** |
110
- | docx | 0.21 ops/s | |
111
+ | Method | Speed | Speedup |
112
+ | --------- | ---------: | -------: |
113
+ | All STORE | 0.42 ops/s | **1.4x** |
114
+ | Default | 0.31 ops/s | 1.1x |
115
+ | docx | 0.29 ops/s | |
111
116
 
112
117
  ## License
113
118
 
package/dist/index.d.mts CHANGED
@@ -1,8 +1,8 @@
1
- import { AppProperties, AttributePayload, BaseXmlComponent, BuilderElement, Context as Context$1, EMPTY_OBJECT, EmptyElement, IXmlableObject, IgnoreIfEmptyXmlComponent, ImportedRootElementAttributes, ImportedXmlComponent, InitializableXmlComponent, OutputByType, OutputByType as OutputByType$1, OutputType, OutputType as OutputType$1, ParsedArchive, Relationships, UniqueNumericIdCreator, XmlComponent, XmlComponent as XmlComponent$1, attrObj, chartAttr, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl } from "@office-open/core";
1
+ import { AppProperties, AttributePayload, BaseXmlComponent, BuilderElement, CompressionOptions, Context as Context$1, EMPTY_OBJECT, EmptyElement, IXmlableObject, IgnoreIfEmptyXmlComponent, ImportedRootElementAttributes, ImportedXmlComponent, InitializableXmlComponent, OutputByType, OutputByType as OutputByType$1, OutputType, OutputType as OutputType$1, PackerOptions, ParsedArchive, Relationships, UniqueNumericIdCreator, XmlComponent, XmlComponent as XmlComponent$1, attrObj, chartAttr, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl } from "@office-open/core";
2
2
  import { Element } from "@office-open/xml";
3
3
  import { DataType } from "undio";
4
4
  import { BlipEffectsOptions, CustomGeometryOptions, EffectDagOptions, EffectListOptions, FillOptions, OutlineOptions, Scene3DOptions, Shape3DOptions, SourceRectangleOptions, TileOptions } from "@office-open/core/drawingml";
5
- import { ChartCollection, ChartData, ChartSeriesData, ChartSpace, ChartSpaceOptions } from "@office-open/core/chart";
5
+ import { ChartCollection, ChartData, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType } from "@office-open/core/chart";
6
6
  import { COLOR_CATEGORIES, DEFAULT_DRAWING_XML, LAYOUT_CATEGORIES, STYLE_CATEGORIES, SmartArtCollection, SmartArtData, TreeNode, createDataModel, getColorXml, getLayoutXml, getStyleXml } from "@office-open/core/smartart";
7
7
  import { Buffer } from "\u0000polyfill-node.buffer";
8
8
  export * from "@office-open/core/values";
@@ -1383,14 +1383,12 @@ declare class ImageRun extends Run {
1383
1383
  //#endregion
1384
1384
  //#region src/file/paragraph/run/chart-run.d.ts
1385
1385
  interface ChartOptions {
1386
- readonly type: "column" | "bar" | "line" | "pie" | "area" | "scatter";
1386
+ readonly type: ChartType;
1387
1387
  readonly data: {
1388
- readonly categories: readonly string[];
1389
- readonly series: readonly {
1390
- name: string;
1391
- values: readonly number[];
1392
- }[];
1388
+ readonly categories?: readonly string[];
1389
+ readonly series: readonly ChartSeriesData[];
1393
1390
  };
1391
+ readonly threeD?: boolean;
1394
1392
  readonly transformation: MediaTransformation;
1395
1393
  readonly floating?: Floating;
1396
1394
  readonly altText?: DocPropertiesOptions;
@@ -1403,7 +1401,6 @@ declare class ChartRun extends Run {
1403
1401
  private readonly chartKey;
1404
1402
  constructor(options: ChartOptions);
1405
1403
  prepForXml(context: Context): IXmlableObject | undefined;
1406
- private hashChartData;
1407
1404
  }
1408
1405
  //#endregion
1409
1406
  //#region src/file/paragraph/run/smartart-run.d.ts
@@ -2130,7 +2127,7 @@ declare class TableCell extends BaseXmlComponent {
2130
2127
  //#endregion
2131
2128
  //#region src/file/table/table-row/table-row.d.ts
2132
2129
  type TableRowOptions = {
2133
- readonly children: readonly (TableCell | StructuredDocumentTagCell | StructuredDocumentTagRow | TableCellOptions)[];
2130
+ readonly cells: readonly (TableCell | StructuredDocumentTagCell | StructuredDocumentTagRow | TableCellOptions)[];
2134
2131
  readonly propertyExceptions?: TablePropertyExOptions;
2135
2132
  } & ITableRowPropertiesOptions;
2136
2133
  declare class TableRow extends BaseXmlComponent {
@@ -4198,7 +4195,7 @@ declare namespace index_d_exports$3 {
4198
4195
  export { COLOR_CATEGORIES, DEFAULT_DRAWING_XML, LAYOUT_CATEGORIES, STYLE_CATEGORIES, SmartArtCollection, SmartArtData, TreeNode, createDataModel, getColorXml, getLayoutXml, getStyleXml };
4199
4196
  }
4200
4197
  declare namespace index_d_exports$2 {
4201
- export { AbstractNumbering, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, ChartData, ChartMediaData, ChartOptions, ChartRun, ChartSeriesData, ChartSpace, ChartSpaceOptions, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, Context, ContinuationSeparator, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, Document, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, File, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, OverlapType, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, TreeNode, UnderlineType, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, attrObj, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, getColorXml, getLayoutXml, getStyleXml, hpsMeasureObj, numberValObj, onOffObj, parseMathChildren, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, wrapEl };
4198
+ export { AbstractNumbering, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, ChartData, ChartMediaData, ChartOptions, ChartRun, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, Context, ContinuationSeparator, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, Document, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, File, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, OverlapType, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, TreeNode, UnderlineType, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, attrObj, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, getColorXml, getLayoutXml, getStyleXml, hpsMeasureObj, numberValObj, onOffObj, parseMathChildren, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, wrapEl };
4202
4199
  }
4203
4200
  //#endregion
4204
4201
  //#region src/export/packer/packer.d.ts
@@ -4288,8 +4285,8 @@ interface DocxDocument {
4288
4285
  declare function parseDocument(data: DataType): PropertiesOptions;
4289
4286
  declare function parseDocx(data: DataType): DocxDocument;
4290
4287
  declare namespace index_d_exports {
4291
- export { AbstractNumbering, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, ChartData, ChartMediaData, ChartOptions, ChartRun, ChartSeriesData, ChartSpace, ChartSpaceOptions, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, Context, ContinuationSeparator, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, File as Document, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, DocxDocument, DocxPartRefs, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, File, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, OutputByType, OutputType, OverlapType, Packer, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, TreeNode, UnderlineType, UniqueNumericIdCreator, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, attrObj, bookmarkUniqueNumericIdGen, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, docPropertiesUniqueNumericIdGen, getColorXml, getLayoutXml, getStyleXml, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, parseDocument, parseDocx, parseMathChildren, patchDetector, patchDocument, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl };
4288
+ export { AbstractNumbering, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, ChartData, ChartMediaData, ChartOptions, ChartRun, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, CompressionOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, Context, ContinuationSeparator, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, File as Document, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, DocxDocument, DocxPartRefs, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, File, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, OutputByType, OutputType, OverlapType, Packer, PackerOptions, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, TreeNode, UnderlineType, UniqueNumericIdCreator, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, attrObj, bookmarkUniqueNumericIdGen, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, docPropertiesUniqueNumericIdGen, getColorXml, getLayoutXml, getStyleXml, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, parseDocument, parseDocx, parseMathChildren, patchDetector, patchDocument, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl };
4292
4289
  }
4293
4290
  //#endregion
4294
- export { AbstractNumbering, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, type AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, type ChartData, ChartMediaData, ChartOptions, ChartRun, type ChartSeriesData, ChartSpace, type ChartSpaceOptions, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, type Context, ContinuationSeparator, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, File as Document, File, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, DocxDocument, DocxPartRefs, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, type IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, type OutputByType, type OutputType, OverlapType, Packer, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, type PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, type SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, type TreeNode, UnderlineType, type UniqueNumericIdCreator, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, attrObj, bookmarkUniqueNumericIdGen, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, docPropertiesUniqueNumericIdGen, getColorXml, getLayoutXml, getStyleXml, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, parseDocument, parseDocx, parseMathChildren, patchDetector, patchDocument, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl };
4291
+ export { AbstractNumbering, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, type AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, type ChartData, ChartMediaData, ChartOptions, ChartRun, type ChartSeriesData, ChartSpace, type ChartSpaceOptions, type ChartType, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, type CompressionOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, type Context, ContinuationSeparator, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, File as Document, File, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, DocxDocument, DocxPartRefs, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, type IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, type OutputByType, type OutputType, OverlapType, Packer, type PackerOptions, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, type PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, type SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, type TreeNode, UnderlineType, type UniqueNumericIdCreator, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, attrObj, bookmarkUniqueNumericIdGen, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, docPropertiesUniqueNumericIdGen, getColorXml, getLayoutXml, getStyleXml, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, parseDocument, parseDocx, parseMathChildren, patchDetector, patchDocument, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl };
4295
4292
  //# sourceMappingURL=index.d.mts.map