@office-open/docx 0.7.1 → 0.8.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/dist/index.d.mts CHANGED
@@ -462,10 +462,10 @@ interface NumberPropertiesOptions {
462
462
  readonly numStart?: number;
463
463
  readonly numRestart?: (typeof NumberRestartType)[keyof typeof NumberRestartType];
464
464
  }
465
- interface FootnotePropertiesOptions extends NumberPropertiesOptions {
465
+ interface FootnotePropertiesOptions$1 extends NumberPropertiesOptions {
466
466
  readonly pos?: (typeof FootnotePositionType)[keyof typeof FootnotePositionType];
467
467
  }
468
- interface EndnotePropertiesOptions extends NumberPropertiesOptions {
468
+ interface EndnotePropertiesOptions$1 extends NumberPropertiesOptions {
469
469
  readonly pos?: (typeof EndnotePositionType)[keyof typeof EndnotePositionType];
470
470
  }
471
471
  //#endregion
@@ -656,6 +656,10 @@ interface HeaderFooterGroup<T> {
656
656
  readonly even?: T;
657
657
  }
658
658
  interface SectionPropertiesOptionsBase {
659
+ readonly rsidRPr?: string;
660
+ readonly rsidDel?: string;
661
+ readonly rsidR?: string;
662
+ readonly rsidSect?: string;
659
663
  readonly page?: {
660
664
  readonly size?: Partial<PageSizeAttributes>;
661
665
  readonly margin?: PageMarginAttributes;
@@ -679,8 +683,8 @@ interface SectionPropertiesOptionsBase {
679
683
  readonly first?: number;
680
684
  readonly other?: number;
681
685
  };
682
- readonly footnotePr?: FootnotePropertiesOptions;
683
- readonly endnotePr?: EndnotePropertiesOptions;
686
+ readonly footnotePr?: FootnotePropertiesOptions$1;
687
+ readonly endnotePr?: EndnotePropertiesOptions$1;
684
688
  readonly printerSettingsId?: string;
685
689
  }
686
690
  type ISectionPropertiesChangeOptions = ChangedAttributesProperties & SectionPropertiesOptionsBase;
@@ -742,7 +746,11 @@ declare class SectionProperties extends XmlComponent {
742
746
  paperSrc,
743
747
  footnotePr,
744
748
  endnotePr,
745
- printerSettingsId
749
+ printerSettingsId,
750
+ rsidRPr,
751
+ rsidDel,
752
+ rsidR,
753
+ rsidSect
746
754
  }?: ISectionPropertiesOptions);
747
755
  private addHeaderFooterGroup;
748
756
  }
@@ -797,6 +805,7 @@ declare class DocumentBackground extends XmlComponent {
797
805
  //#region src/file/document/document.d.ts
798
806
  interface DocumentOptions {
799
807
  readonly background?: DocumentBackgroundOptions;
808
+ readonly conformance?: "strict" | "transitional";
800
809
  }
801
810
  declare class Document extends XmlComponent {
802
811
  readonly body: Body;
@@ -1138,6 +1147,7 @@ interface RunStylePropertiesOptions {
1138
1147
  readonly fitText?: number;
1139
1148
  readonly complexScript?: boolean;
1140
1149
  readonly eastAsianLayout?: EastAsianLayoutOptions;
1150
+ readonly contentPartRId?: string;
1141
1151
  }
1142
1152
  type RunPropertiesOptions = {
1143
1153
  readonly style?: string;
@@ -1165,7 +1175,10 @@ interface RunOptionsBase {
1165
1175
  readonly break?: number;
1166
1176
  readonly text?: string;
1167
1177
  }
1168
- type RunOptions = RunOptionsBase & RunPropertiesOptions;
1178
+ type RunOptions = RunOptionsBase & RunPropertiesOptions & {
1179
+ readonly rsidRPr?: string;
1180
+ readonly rsidDel?: string;
1181
+ };
1169
1182
  type IParagraphRunOptions = RunOptionsBase & IParagraphRunPropertiesOptions;
1170
1183
  declare const PageNumber: {
1171
1184
  readonly CURRENT: "CURRENT";
@@ -1178,7 +1191,7 @@ declare class Run extends BaseXmlComponent {
1178
1191
  protected extraChildren: (BaseXmlComponent | IXmlableObject)[];
1179
1192
  private readonly _prebuilt;
1180
1193
  constructor(options: RunOptions);
1181
- prepForXml(context: Context): IXmlableObject | undefined;
1194
+ protected registerResources(_context: Context): void;
1182
1195
  toXml(context: Context): string;
1183
1196
  }
1184
1197
  //#endregion
@@ -1377,7 +1390,7 @@ type IImageOptions = (RegularImageOptions | SvgMediaOptions) & CoreImageOptions;
1377
1390
  declare class ImageRun extends Run {
1378
1391
  private readonly imageData;
1379
1392
  constructor(options: IImageOptions);
1380
- prepForXml(context: Context): IXmlableObject | undefined;
1393
+ protected registerResources(context: Context): void;
1381
1394
  }
1382
1395
  //#endregion
1383
1396
  //#region src/file/paragraph/run/chart-run.d.ts
@@ -1399,7 +1412,7 @@ declare class ChartRun extends Run {
1399
1412
  private readonly chartOptions;
1400
1413
  private readonly chartKey;
1401
1414
  constructor(options: ChartOptions);
1402
- prepForXml(context: Context): IXmlableObject | undefined;
1415
+ protected registerResources(context: Context): void;
1403
1416
  }
1404
1417
  //#endregion
1405
1418
  //#region src/file/paragraph/run/smartart-run.d.ts
@@ -1422,7 +1435,7 @@ declare class SmartArtRun extends Run {
1422
1435
  private readonly smartArtOptions;
1423
1436
  private readonly smartArtKey;
1424
1437
  constructor(options: SmartArtOptions);
1425
- prepForXml(context: Context): IXmlableObject | undefined;
1438
+ protected registerResources(context: Context): void;
1426
1439
  private hashSmartArtData;
1427
1440
  }
1428
1441
  //#endregion
@@ -1454,7 +1467,7 @@ declare class WpgGroupRun extends Run {
1454
1467
  private readonly wpgGroupData;
1455
1468
  private readonly mediaDatas;
1456
1469
  constructor(options: IWpgGroupOptions);
1457
- prepForXml(context: Context): IXmlableObject | undefined;
1470
+ protected registerResources(context: Context): void;
1458
1471
  }
1459
1472
  //#endregion
1460
1473
  //#region src/file/paragraph/run/sequential-identifier.d.ts
@@ -1536,31 +1549,6 @@ declare class CheckBox extends XmlComponent {
1536
1549
  constructor(options?: CheckboxSymbolOptions);
1537
1550
  }
1538
1551
  //#endregion
1539
- //#region src/file/permissions/perm-start.d.ts
1540
- declare const EditGroupType: {
1541
- readonly NONE: "none";
1542
- readonly EVERYONE: "everyone";
1543
- readonly ADMINISTRATORS: "administrators";
1544
- readonly CONTRIBUTORS: "contributors";
1545
- readonly EDITORS: "editors";
1546
- readonly OWNERS: "owners";
1547
- readonly CURRENT: "current";
1548
- };
1549
- type EditGroup = (typeof EditGroupType)[keyof typeof EditGroupType];
1550
- interface PermStartOptions {
1551
- readonly id: string | number;
1552
- readonly edGroup?: EditGroup;
1553
- readonly ed?: string;
1554
- readonly colFirst?: number;
1555
- readonly colLast?: number;
1556
- }
1557
- declare class PermStart extends XmlComponent {
1558
- constructor(options: PermStartOptions);
1559
- }
1560
- declare class PermEnd extends XmlComponent {
1561
- constructor(id: string | number);
1562
- }
1563
- //#endregion
1564
1552
  //#region src/file/table-of-contents/table-of-contents.d.ts
1565
1553
  interface ToCEntry {
1566
1554
  readonly title: string;
@@ -1670,6 +1658,7 @@ declare class StructuredDocumentTagContent extends XmlComponent {
1670
1658
  interface SdtRunOptions {
1671
1659
  readonly properties: SdtPropertiesOptions;
1672
1660
  readonly children?: readonly BaseXmlComponent[];
1661
+ readonly endProperties?: readonly BaseXmlComponent[];
1673
1662
  }
1674
1663
  declare class StructuredDocumentTagRun extends XmlComponent {
1675
1664
  constructor(options: SdtRunOptions);
@@ -1677,6 +1666,7 @@ declare class StructuredDocumentTagRun extends XmlComponent {
1677
1666
  interface SdtBlockOptions {
1678
1667
  readonly properties: SdtPropertiesOptions;
1679
1668
  readonly children?: readonly FileChild[];
1669
+ readonly endProperties?: readonly BaseXmlComponent[];
1680
1670
  }
1681
1671
  declare class StructuredDocumentTagBlock extends XmlComponent implements FileChild {
1682
1672
  readonly fileChild: symbol;
@@ -1872,6 +1862,11 @@ interface TablePropertyExOptions {
1872
1862
  readonly cellMargin?: TableCellMarginOptions;
1873
1863
  readonly tableLook?: TableLookOptions;
1874
1864
  readonly cellSpacing?: TableCellSpacingProperties;
1865
+ readonly tblPrExChange?: {
1866
+ readonly author: string;
1867
+ readonly date?: string;
1868
+ readonly id: string;
1869
+ };
1875
1870
  }
1876
1871
  declare class TablePropertyExceptions extends IgnoreIfEmptyXmlComponent {
1877
1872
  constructor(options: TablePropertyExOptions);
@@ -1941,6 +1936,8 @@ type SectionChild = BaseXmlComponent | {
1941
1936
  altChunk: AltChunkOptions;
1942
1937
  } | {
1943
1938
  subDoc: SubDocOptions;
1939
+ } | {
1940
+ customXml: CustomXmlBlockOptions;
1944
1941
  };
1945
1942
  //#endregion
1946
1943
  //#region src/file/track-revision/track-revision-components/inserted-text-run.d.ts
@@ -2060,6 +2057,8 @@ interface TableCellBordersOptions {
2060
2057
  readonly bottom?: BorderOptions;
2061
2058
  readonly end?: BorderOptions;
2062
2059
  readonly right?: BorderOptions;
2060
+ readonly topLeftToBottomRight?: BorderOptions;
2061
+ readonly topRightToBottomLeft?: BorderOptions;
2063
2062
  }
2064
2063
  declare function buildTableCellBorders(options: TableCellBordersOptions): IXmlableObject | undefined;
2065
2064
  declare class TableCellBorders extends IgnoreIfEmptyXmlComponent {
@@ -2126,8 +2125,12 @@ declare class TableCell extends BaseXmlComponent {
2126
2125
  //#endregion
2127
2126
  //#region src/file/table/table-row/table-row.d.ts
2128
2127
  type TableRowOptions = {
2129
- readonly cells: readonly (TableCell | StructuredDocumentTagCell | StructuredDocumentTagRow | TableCellOptions)[];
2128
+ readonly cells: readonly (TableCell | StructuredDocumentTagCell | StructuredDocumentTagRow | CustomXmlCell | TableCellOptions)[];
2130
2129
  readonly propertyExceptions?: TablePropertyExOptions;
2130
+ readonly rsidRPr?: string;
2131
+ readonly rsidR?: string;
2132
+ readonly rsidDel?: string;
2133
+ readonly rsidTr?: string;
2131
2134
  } & ITableRowPropertiesOptions;
2132
2135
  declare class TableRow extends BaseXmlComponent {
2133
2136
  private readonly options;
@@ -2145,7 +2148,7 @@ declare class TableRow extends BaseXmlComponent {
2145
2148
  //#endregion
2146
2149
  //#region src/file/table/table.d.ts
2147
2150
  interface TableOptions {
2148
- readonly rows: readonly (TableRow | StructuredDocumentTagRow | TableRowOptions)[];
2151
+ readonly rows: readonly (TableRow | StructuredDocumentTagRow | CustomXmlRow | TableRowOptions)[];
2149
2152
  readonly width?: TableWidthProperties;
2150
2153
  readonly columnWidths?: readonly number[];
2151
2154
  readonly columnWidthsRevision?: TableGridChangeOptions;
@@ -2197,6 +2200,88 @@ declare class StructuredDocumentTagRow extends XmlComponent {
2197
2200
  addCellToColumnIndex(cell: TableCell, columnIndex: number): void;
2198
2201
  }
2199
2202
  //#endregion
2203
+ //#region src/file/custom-xml/custom-xml.d.ts
2204
+ interface CustomXmlDataBindingOptions {
2205
+ readonly xpath: string;
2206
+ readonly storeItemID: string;
2207
+ readonly prefixMappings?: string;
2208
+ }
2209
+ interface CustomXmlAttributeOptions {
2210
+ readonly name: string;
2211
+ readonly val: string;
2212
+ readonly uri?: string;
2213
+ }
2214
+ interface CustomXmlPrOptions {
2215
+ readonly placeholder?: string;
2216
+ readonly attributes?: readonly CustomXmlAttributeOptions[];
2217
+ }
2218
+ interface CustomXmlRunOptions {
2219
+ readonly element: string;
2220
+ readonly uri?: string;
2221
+ readonly customXmlPr?: CustomXmlPrOptions;
2222
+ readonly children?: readonly BaseXmlComponent[];
2223
+ }
2224
+ interface CustomXmlBlockOptions {
2225
+ readonly element: string;
2226
+ readonly uri?: string;
2227
+ readonly customXmlPr?: CustomXmlPrOptions;
2228
+ readonly children?: readonly FileChild[];
2229
+ }
2230
+ interface CustomXmlRowOptions {
2231
+ readonly element: string;
2232
+ readonly uri?: string;
2233
+ readonly customXmlPr?: CustomXmlPrOptions;
2234
+ readonly children?: readonly TableRow[];
2235
+ }
2236
+ interface CustomXmlCellOptions {
2237
+ readonly element: string;
2238
+ readonly uri?: string;
2239
+ readonly customXmlPr?: CustomXmlPrOptions;
2240
+ readonly children?: readonly (TableCell | StructuredDocumentTagCell)[];
2241
+ }
2242
+ declare class CustomXmlRun extends XmlComponent {
2243
+ constructor(options: CustomXmlRunOptions);
2244
+ }
2245
+ declare class CustomXmlBlock extends XmlComponent {
2246
+ readonly fileChild: symbol;
2247
+ constructor(options: CustomXmlBlockOptions);
2248
+ }
2249
+ declare class CustomXmlRow extends XmlComponent {
2250
+ private readonly rows;
2251
+ constructor(options: CustomXmlRowOptions);
2252
+ get cellCount(): number;
2253
+ get cells(): readonly TableCell[];
2254
+ addCellToColumnIndex(cell: TableCell, columnIndex: number): void;
2255
+ }
2256
+ declare class CustomXmlCell extends XmlComponent {
2257
+ constructor(options: CustomXmlCellOptions);
2258
+ }
2259
+ //#endregion
2260
+ //#region src/file/permissions/perm-start.d.ts
2261
+ declare const EditGroupType: {
2262
+ readonly NONE: "none";
2263
+ readonly EVERYONE: "everyone";
2264
+ readonly ADMINISTRATORS: "administrators";
2265
+ readonly CONTRIBUTORS: "contributors";
2266
+ readonly EDITORS: "editors";
2267
+ readonly OWNERS: "owners";
2268
+ readonly CURRENT: "current";
2269
+ };
2270
+ type EditGroup = (typeof EditGroupType)[keyof typeof EditGroupType];
2271
+ interface PermStartOptions {
2272
+ readonly id: string | number;
2273
+ readonly edGroup?: EditGroup;
2274
+ readonly ed?: string;
2275
+ readonly colFirst?: number;
2276
+ readonly colLast?: number;
2277
+ }
2278
+ declare class PermStart extends XmlComponent {
2279
+ constructor(options: PermStartOptions);
2280
+ }
2281
+ declare class PermEnd extends XmlComponent {
2282
+ constructor(id: string | number);
2283
+ }
2284
+ //#endregion
2200
2285
  //#region src/file/sub-doc/sub-doc-collection.d.ts
2201
2286
  interface SubDocData {
2202
2287
  readonly data: Uint8Array;
@@ -2266,10 +2351,10 @@ declare class Bookmark {
2266
2351
  constructor(options: BookmarkOptions);
2267
2352
  }
2268
2353
  declare class BookmarkStart extends XmlComponent {
2269
- constructor(id: string, linkId: number);
2354
+ constructor(id: string, linkId: number, displacedByCustomXml?: "before" | "after");
2270
2355
  }
2271
2356
  declare class BookmarkEnd extends XmlComponent {
2272
- constructor(linkId: number);
2357
+ constructor(linkId: number, displacedByCustomXml?: "before" | "after");
2273
2358
  }
2274
2359
  //#endregion
2275
2360
  //#region src/file/paragraph/links/move-bookmark.d.ts
@@ -2518,14 +2603,19 @@ declare class MathRun extends XmlComponent {
2518
2603
  }
2519
2604
  //#endregion
2520
2605
  //#region src/file/paragraph/math/matrix/math-matrix-properties.d.ts
2606
+ interface MathMatrixColumnOptions {
2607
+ readonly count?: number;
2608
+ readonly mcJc?: "left" | "center" | "right" | "inside" | "outside";
2609
+ }
2521
2610
  interface MathMatrixPropertiesOptions {
2522
2611
  readonly baseJc?: "top" | "bot" | "center";
2523
2612
  readonly plcHide?: boolean;
2524
- readonly rSpRule?: "single" | "1.5" | "double" | "exactly" | "multiple";
2525
- readonly cGpRule?: "single" | "1.5" | "double" | "exactly" | "multiple";
2613
+ readonly rSpRule?: 0 | 1 | 2 | 3 | 4;
2614
+ readonly cGpRule?: 0 | 1 | 2 | 3 | 4;
2526
2615
  readonly rSp?: number;
2527
2616
  readonly cSp?: number;
2528
2617
  readonly cGp?: number;
2618
+ readonly mcs?: readonly MathMatrixColumnOptions[];
2529
2619
  }
2530
2620
  declare const createMathMatrixProperties: (options: MathMatrixPropertiesOptions) => XmlComponent;
2531
2621
  //#endregion
@@ -2547,11 +2637,16 @@ declare const createMathAccentCharacter: ({
2547
2637
  }: MathAccentCharacterOptions) => XmlComponent;
2548
2638
  //#endregion
2549
2639
  //#region src/file/paragraph/math/n-ary/math-base.d.ts
2640
+ interface MathArgPropertiesOptions {
2641
+ readonly argSz?: number;
2642
+ }
2550
2643
  interface MathBaseOptions {
2551
2644
  readonly children: readonly MathComponent[];
2645
+ readonly argPr?: MathArgPropertiesOptions;
2552
2646
  }
2553
2647
  declare const createMathBase: ({
2554
- children
2648
+ children,
2649
+ argPr
2555
2650
  }: MathBaseOptions) => XmlComponent;
2556
2651
  //#endregion
2557
2652
  //#region src/file/paragraph/math/n-ary/math-limit-location.d.ts
@@ -2957,6 +3052,7 @@ interface BordersOptions {
2957
3052
  readonly left?: BorderOptions;
2958
3053
  readonly right?: BorderOptions;
2959
3054
  readonly between?: BorderOptions;
3055
+ readonly bar?: BorderOptions;
2960
3056
  }
2961
3057
  declare class Border extends IgnoreIfEmptyXmlComponent {
2962
3058
  constructor(options: BordersOptions);
@@ -3224,6 +3320,12 @@ type IParagraphStylePropertiesOptions = {
3224
3320
  readonly level: number;
3225
3321
  readonly instance?: number;
3226
3322
  readonly custom?: boolean;
3323
+ readonly numberingChange?: {
3324
+ readonly original: string;
3325
+ readonly id: string;
3326
+ readonly author: string;
3327
+ readonly date?: string;
3328
+ };
3227
3329
  } | false;
3228
3330
  } & LevelParagraphStylePropertiesOptions;
3229
3331
  type IParagraphPropertiesOptionsBase = {
@@ -3257,9 +3359,36 @@ declare class ParagraphPropertiesChange extends XmlComponent {
3257
3359
  constructor(options: IParagraphPropertiesChangeOptions);
3258
3360
  }
3259
3361
  //#endregion
3362
+ //#region src/file/paragraph/run/proof-error.d.ts
3363
+ declare const ProofErrorType: {
3364
+ readonly SPELL_START: "spellStart";
3365
+ readonly SPELL_END: "spellEnd";
3366
+ readonly GRAM_START: "gramStart";
3367
+ readonly GRAM_END: "gramEnd";
3368
+ };
3369
+ type ProofErrorTypeValue = (typeof ProofErrorType)[keyof typeof ProofErrorType];
3370
+ declare class ProofError extends XmlComponent {
3371
+ constructor(type: ProofErrorTypeValue);
3372
+ }
3373
+ //#endregion
3374
+ //#region src/file/paragraph/run/smart-tag-run.d.ts
3375
+ interface SmartTagRunOptions {
3376
+ readonly uri?: string;
3377
+ readonly element: string;
3378
+ readonly properties?: readonly {
3379
+ readonly uri: string;
3380
+ readonly name: string;
3381
+ readonly val: string;
3382
+ }[];
3383
+ readonly children?: readonly ParagraphChild[];
3384
+ }
3385
+ declare class SmartTagRun extends XmlComponent {
3386
+ constructor(options: SmartTagRunOptions);
3387
+ }
3388
+ //#endregion
3260
3389
  //#region src/file/paragraph/paragraph.d.ts
3261
3390
  type Math$1 = InstanceType<typeof Math>;
3262
- type ParagraphChild = TextRun | ImageRun | SymbolRun | Bookmark | PageBreak | ColumnBreak | SequentialIdentifier | FootnoteReferenceRun | InternalHyperlink | ExternalHyperlink | InsertedTextRun | DeletedTextRun | Math$1 | SimpleField | SimpleMailMergeField | ChartRun | SmartArtRun | Comments | Comment | CommentRangeStart | CommentRangeEnd | CommentReference | CheckBox | StructuredDocumentTagRun | MoveFromRangeStart | MoveFromRangeEnd | MoveToRangeStart | MoveToRangeEnd | MovedFromTextRun | MovedToTextRun | PermStart | PermEnd | Dir | Bdo | AltChunk | SubDoc;
3391
+ type ParagraphChild = TextRun | ImageRun | SymbolRun | Bookmark | PageBreak | ColumnBreak | SequentialIdentifier | FootnoteReferenceRun | InternalHyperlink | ExternalHyperlink | InsertedTextRun | DeletedTextRun | Math$1 | SimpleField | SimpleMailMergeField | ChartRun | SmartArtRun | Comments | Comment | CommentRangeStart | CommentRangeEnd | CommentReference | CheckBox | StructuredDocumentTagRun | MoveFromRangeStart | MoveFromRangeEnd | MoveToRangeStart | MoveToRangeEnd | MovedFromTextRun | MovedToTextRun | PermStart | PermEnd | Dir | Bdo | AltChunk | SubDoc | CustomXmlRun | SmartTagRun | ProofError;
3263
3392
  interface ChartChild {
3264
3393
  readonly chart: ChartOptions;
3265
3394
  }
@@ -3312,6 +3441,11 @@ type IParagraphJsonChild = ChartChild | SmartArtChild | ImageChild | MathChild |
3312
3441
  type ParagraphOptions = {
3313
3442
  readonly text?: string;
3314
3443
  readonly children?: readonly (ParagraphChild | RunOptions | IParagraphJsonChild | string)[];
3444
+ readonly rsidR?: string;
3445
+ readonly rsidRPr?: string;
3446
+ readonly rsidRDefault?: string;
3447
+ readonly rsidDel?: string;
3448
+ readonly rsidP?: string;
3315
3449
  } & ParagraphPropertiesOptions;
3316
3450
  declare class Paragraph extends BaseXmlComponent implements FileChild {
3317
3451
  readonly fileChild: symbol;
@@ -3464,6 +3598,32 @@ declare const createBreak: (options?: {
3464
3598
  readonly clear?: "none" | "left" | "right" | "all";
3465
3599
  }) => XmlComponent;
3466
3600
  //#endregion
3601
+ //#region src/file/paragraph/run/custom-xml-range.d.ts
3602
+ declare class CustomXmlInsRangeStart extends XmlComponent {
3603
+ constructor(id: number, author: string, date?: string);
3604
+ }
3605
+ declare class CustomXmlInsRangeEnd extends XmlComponent {
3606
+ constructor(id: number);
3607
+ }
3608
+ declare class CustomXmlDelRangeStart extends XmlComponent {
3609
+ constructor(id: number, author: string, date?: string);
3610
+ }
3611
+ declare class CustomXmlDelRangeEnd extends XmlComponent {
3612
+ constructor(id: number);
3613
+ }
3614
+ declare class CustomXmlMoveFromRangeStart extends XmlComponent {
3615
+ constructor(id: number, author: string, date?: string);
3616
+ }
3617
+ declare class CustomXmlMoveFromRangeEnd extends XmlComponent {
3618
+ constructor(id: number);
3619
+ }
3620
+ declare class CustomXmlMoveToRangeStart extends XmlComponent {
3621
+ constructor(id: number, author: string, date?: string);
3622
+ }
3623
+ declare class CustomXmlMoveToRangeEnd extends XmlComponent {
3624
+ constructor(id: number);
3625
+ }
3626
+ //#endregion
3467
3627
  //#region src/file/endnotes/endnote/run/reference-run.d.ts
3468
3628
  declare class EndnoteIdReference extends XmlComponent {
3469
3629
  constructor(id: number);
@@ -3516,6 +3676,8 @@ declare class Bibliography extends XmlComponent {
3516
3676
  declare class ContentTypes extends XmlComponent {
3517
3677
  constructor();
3518
3678
  addBibliography(): void;
3679
+ addGlossary(): void;
3680
+ addWebSettings(): void;
3519
3681
  addFooter(index: number): void;
3520
3682
  addHeader(index: number): void;
3521
3683
  addChart(index: number): void;
@@ -3528,47 +3690,77 @@ declare class ContentTypes extends XmlComponent {
3528
3690
  addSubDoc(path: string): void;
3529
3691
  }
3530
3692
  //#endregion
3531
- //#region src/file/fonts/font.d.ts
3532
- declare const CharacterSet: {
3533
- readonly ANSI: "00";
3534
- readonly ARABIC: "B2";
3535
- readonly BALTIC: "BA";
3536
- readonly CHINESEBIG5: "88";
3537
- readonly DEFAULT: "01";
3538
- readonly EASTEUROPE: "EE";
3539
- readonly GB_2312: "86";
3540
- readonly GREEK: "A1";
3541
- readonly HANGUL: "81";
3542
- readonly HEBREW: "B1";
3543
- readonly JIS: "80";
3544
- readonly JOHAB: "82";
3545
- readonly MAC: "4D";
3546
- readonly OEM: "FF";
3547
- readonly RUSSIAN: "CC";
3548
- readonly SYMBOL: "02";
3549
- readonly THAI: "DE";
3550
- readonly TURKISH: "A2";
3551
- readonly VIETNAMESE: "A3";
3693
+ //#region src/file/glossary/glossary-document.d.ts
3694
+ declare const DocPartGallery: {
3695
+ readonly PLACEHOLDER: "placeholder";
3696
+ readonly DEFAULT: "default";
3697
+ readonly DOC_PARTS: "docParts";
3698
+ readonly COVER_PAGE: "coverPg";
3699
+ readonly EQUATIONS: "eq";
3700
+ readonly FOOTERS: "ftrs";
3701
+ readonly HEADERS: "hdrs";
3702
+ readonly PAGE_NUMBERS: "pgNum";
3703
+ readonly TABLES: "tbls";
3704
+ readonly WATERMARKS: "watermarks";
3705
+ readonly AUTO_TEXT: "autoTxt";
3706
+ readonly TEXT_BOX: "txtBox";
3707
+ readonly PAGE_NUMBERS_TOP: "pgNumT";
3708
+ readonly PAGE_NUMBERS_BOTTOM: "pgNumB";
3709
+ readonly PAGE_NUMBERS_MARGIN: "pgNumMargins";
3710
+ readonly TABLE_OF_CONTENTS: "tblOfContents";
3711
+ readonly BIBLIOGRAPHY: "bib";
3712
+ readonly CUSTOM_QUICK_PARTS: "custQuickParts";
3713
+ readonly CUSTOM_COVER_PAGE: "custCoverPg";
3714
+ readonly CUSTOM_EQUATIONS: "custEq";
3715
+ readonly CUSTOM_FOOTERS: "custFtrs";
3716
+ readonly CUSTOM_HEADERS: "custHdrs";
3717
+ readonly CUSTOM_PAGE_NUMBERS: "custPgNum";
3718
+ readonly CUSTOM_TABLES: "custTbls";
3719
+ readonly CUSTOM_WATERMARKS: "custWatermarks";
3720
+ readonly CUSTOM_AUTO_TEXT: "custAutoTxt";
3721
+ readonly CUSTOM_TEXT_BOX: "custTxtBox";
3722
+ readonly CUSTOM_PAGE_NUMBERS_TOP: "custPgNumT";
3723
+ readonly CUSTOM_PAGE_NUMBERS_BOTTOM: "custPgNumB";
3724
+ readonly CUSTOM_PAGE_NUMBERS_MARGIN: "custPgNumMargins";
3725
+ readonly CUSTOM_TABLE_OF_CONTENTS: "custTblOfContents";
3726
+ readonly CUSTOM_BIBLIOGRAPHY: "custBib";
3727
+ readonly CUSTOM1: "custom1";
3728
+ readonly CUSTOM2: "custom2";
3729
+ readonly CUSTOM3: "custom3";
3730
+ readonly CUSTOM4: "custom4";
3731
+ readonly CUSTOM5: "custom5";
3552
3732
  };
3553
- //#endregion
3554
- //#region src/file/fonts/font-wrapper.d.ts
3555
- type EmbeddedFontOptionsWithKey = EmbeddedFontOptions & {
3556
- readonly fontKey: string;
3733
+ type DocPartGallery = (typeof DocPartGallery)[keyof typeof DocPartGallery];
3734
+ declare const DocPartType: {
3735
+ readonly NONE: "none";
3736
+ readonly NORMAL: "normal";
3737
+ readonly AUTO_EXPAND: "autoExp";
3738
+ readonly TOOLBAR: "toolbar";
3739
+ readonly SPELLER: "speller";
3740
+ readonly FORM_FIELD: "formFld";
3741
+ readonly BUILDING_BLOCK_PLACEHOLDER: "bbPlcHdr";
3557
3742
  };
3558
- declare class FontWrapper implements ViewWrapper {
3559
- readonly options: readonly EmbeddedFontOptions[];
3560
- private readonly fontTable;
3561
- readonly relationships: Relationships;
3562
- readonly fontOptionsWithKey: readonly EmbeddedFontOptionsWithKey[];
3563
- constructor(options: readonly EmbeddedFontOptions[]);
3564
- get view(): XmlComponent;
3565
- }
3566
- //#endregion
3567
- //#region src/file/fonts/font-table.d.ts
3568
- interface EmbeddedFontOptions {
3743
+ type DocPartType = (typeof DocPartType)[keyof typeof DocPartType];
3744
+ declare const DocPartBehavior: {
3745
+ readonly CONTENT: "content";
3746
+ readonly PARAGRAPH: "p";
3747
+ readonly PAGE: "pg";
3748
+ };
3749
+ type DocPartBehavior = (typeof DocPartBehavior)[keyof typeof DocPartBehavior];
3750
+ interface DocPartOptions {
3569
3751
  readonly name: string;
3570
- readonly data: Buffer;
3571
- readonly characterSet?: (typeof CharacterSet)[keyof typeof CharacterSet];
3752
+ readonly gallery: DocPartGallery;
3753
+ readonly category?: string;
3754
+ readonly types?: readonly DocPartType[];
3755
+ readonly allTypes?: boolean;
3756
+ readonly behaviors?: readonly DocPartBehavior[];
3757
+ readonly description?: string;
3758
+ readonly guid?: string;
3759
+ readonly decorated?: boolean;
3760
+ readonly children: readonly FileChild[];
3761
+ }
3762
+ interface GlossaryDocumentOptions {
3763
+ readonly parts: readonly DocPartOptions[];
3572
3764
  }
3573
3765
  //#endregion
3574
3766
  //#region src/file/settings/compatibility.d.ts
@@ -3649,6 +3841,9 @@ interface SettingsOptions {
3649
3841
  readonly compatibilityModeVersion?: number;
3650
3842
  readonly evenAndOddHeaders?: boolean;
3651
3843
  readonly trackRevisions?: boolean;
3844
+ readonly doNotTrackFormatting?: boolean;
3845
+ readonly doNotTrackMoves?: boolean;
3846
+ readonly revisionView?: RevisionViewOptions;
3652
3847
  readonly updateFields?: boolean;
3653
3848
  readonly compatibility?: CompatibilityOptions;
3654
3849
  readonly defaultTabStop?: number;
@@ -3662,6 +3857,7 @@ interface SettingsOptions {
3662
3857
  };
3663
3858
  readonly writeProtection?: WriteProtectionOptions;
3664
3859
  readonly displayBackgroundShape?: boolean;
3860
+ readonly doNotDisplayPageBoundaries?: boolean;
3665
3861
  readonly embedTrueTypeFonts?: boolean;
3666
3862
  readonly embedSystemFonts?: boolean;
3667
3863
  readonly saveSubsetFonts?: boolean;
@@ -3669,6 +3865,7 @@ interface SettingsOptions {
3669
3865
  readonly name: string;
3670
3866
  readonly val: string;
3671
3867
  }[];
3868
+ readonly mailMerge?: MailMergeOptions;
3672
3869
  readonly colorSchemeMapping?: {
3673
3870
  readonly bg1?: string;
3674
3871
  readonly t1?: string;
@@ -3683,21 +3880,211 @@ interface SettingsOptions {
3683
3880
  readonly hyperlink?: string;
3684
3881
  readonly followedHyperlink?: string;
3685
3882
  };
3883
+ readonly attachedTemplate?: string;
3884
+ readonly themeFontLang?: string;
3885
+ readonly hideSpellingErrors?: boolean;
3886
+ readonly hideGrammaticalErrors?: boolean;
3887
+ readonly noPunctuationKerning?: boolean;
3888
+ readonly removePersonalInformation?: boolean;
3889
+ readonly removeDateAndTime?: boolean;
3890
+ readonly printPostScriptOverText?: boolean;
3891
+ readonly printFractionalCharacterWidth?: boolean;
3892
+ readonly printFormsData?: boolean;
3893
+ readonly saveFormsData?: boolean;
3894
+ readonly mirrorMargins?: boolean;
3895
+ readonly alignBordersAndEdges?: boolean;
3896
+ readonly bordersDoNotSurroundHeader?: boolean;
3897
+ readonly bordersDoNotSurroundFooter?: boolean;
3898
+ readonly gutterAtTop?: boolean;
3899
+ readonly formsDesign?: boolean;
3900
+ readonly linkStyles?: boolean;
3901
+ readonly autoFormatOverride?: boolean;
3902
+ readonly styleLockTheme?: boolean;
3903
+ readonly styleLockQFSet?: boolean;
3904
+ readonly showEnvelope?: boolean;
3905
+ readonly printTwoOnOne?: boolean;
3906
+ readonly strictFirstAndLastChars?: boolean;
3907
+ readonly savePreviewPicture?: boolean;
3908
+ readonly doNotValidateAgainstSchema?: boolean;
3909
+ readonly saveInvalidXml?: boolean;
3910
+ readonly ignoreMixedContent?: boolean;
3911
+ readonly alwaysShowPlaceholderText?: boolean;
3912
+ readonly doNotDemarcateInvalidXml?: boolean;
3913
+ readonly saveXmlDataOnly?: boolean;
3914
+ readonly useXSLTWhenSaving?: boolean;
3915
+ readonly doNotEmbedSmartTags?: boolean;
3916
+ readonly doNotAutoCompressPictures?: boolean;
3917
+ readonly doNotIncludeSubdocsInStats?: boolean;
3918
+ readonly bookFoldPrinting?: boolean;
3919
+ readonly bookFoldRevPrinting?: boolean;
3920
+ readonly defaultTableStyle?: string;
3921
+ readonly decimalSymbol?: string;
3922
+ readonly listSeparator?: string;
3923
+ readonly clickAndTypeStyle?: string;
3924
+ readonly summaryLength?: number;
3925
+ readonly bookFoldPrintingSheets?: number;
3926
+ readonly drawingGridHorizontalSpacing?: number;
3927
+ readonly drawingGridVerticalSpacing?: number;
3928
+ readonly displayHorizontalDrawingGridEvery?: number;
3929
+ readonly displayVerticalDrawingGridEvery?: number;
3930
+ readonly drawingGridHorizontalOrigin?: number;
3931
+ readonly drawingGridVerticalOrigin?: number;
3932
+ readonly footnotePr?: FootnotePropertiesOptions;
3933
+ readonly endnotePr?: EndnotePropertiesOptions;
3934
+ readonly rsids?: RsidsOptions;
3935
+ readonly readModeInkLockDown?: ReadModeInkLockDownOptions;
3936
+ readonly captions?: CaptionsOptions;
3937
+ readonly mathPr?: MathPropertiesOptions$1;
3938
+ readonly activeWritingStyle?: readonly {
3939
+ readonly lang?: string;
3940
+ readonly vendorID?: string;
3941
+ readonly dllVersion?: string;
3942
+ readonly nlCheck?: boolean;
3943
+ readonly checkStyle?: boolean;
3944
+ readonly appCheck?: string;
3945
+ readonly appName?: string;
3946
+ }[];
3947
+ readonly proofState?: {
3948
+ readonly spelling?: "clean" | "dirty";
3949
+ readonly grammar?: "clean" | "dirty";
3950
+ };
3951
+ readonly stylePaneFormatFilter?: {
3952
+ readonly allStyles?: boolean;
3953
+ readonly customStyles?: boolean;
3954
+ readonly stylesInUse?: boolean;
3955
+ readonly headingStyles?: boolean;
3956
+ readonly numberingStyles?: boolean;
3957
+ readonly tableStyles?: boolean;
3958
+ readonly directFormattingOnRuns?: boolean;
3959
+ readonly directFormattingOnParagraphs?: boolean;
3960
+ readonly directFormattingOnNumbering?: boolean;
3961
+ readonly directFormattingOnTables?: boolean;
3962
+ readonly clearFormatting?: boolean;
3963
+ readonly top3HeadingStyles?: boolean;
3964
+ readonly visibleStyles?: boolean;
3965
+ readonly alternateStyleNames?: boolean;
3966
+ };
3967
+ readonly stylePaneSortMethod?: "name" | "priority" | "default" | "font";
3968
+ readonly documentType?: "letter" | "eMail" | "notSpecified";
3969
+ readonly doNotUseMarginsForDrawingGridOrigin?: boolean;
3970
+ readonly doNotShadeFormData?: boolean;
3971
+ readonly noLineBreaksAfter?: {
3972
+ readonly lang?: string;
3973
+ readonly val?: string;
3974
+ };
3975
+ readonly noLineBreaksBefore?: {
3976
+ readonly lang?: string;
3977
+ readonly val?: string;
3978
+ };
3979
+ readonly saveThroughXslt?: {
3980
+ readonly id?: string;
3981
+ readonly val?: string;
3982
+ readonly solutionID?: string;
3983
+ };
3984
+ readonly showXMLTags?: boolean;
3985
+ readonly alwaysMergeEmptyNamespace?: boolean;
3986
+ readonly hdrShapeDefaults?: boolean;
3987
+ readonly attachedSchema?: readonly string[];
3988
+ readonly forceUpgrade?: boolean;
3989
+ readonly smartTagType?: readonly {
3990
+ readonly namespace?: string;
3991
+ readonly namespaceuri?: string;
3992
+ readonly name?: string;
3993
+ readonly url?: string;
3994
+ }[];
3995
+ readonly shapeDefaults?: boolean;
3996
+ }
3997
+ interface RevisionViewOptions {
3998
+ readonly markup?: boolean;
3999
+ readonly comments?: boolean;
4000
+ readonly insDel?: boolean;
4001
+ readonly formatting?: boolean;
4002
+ readonly inkAnnotations?: boolean;
3686
4003
  }
3687
4004
  interface DocumentProtectionOptions {
3688
4005
  readonly edit?: "none" | "readOnly" | "comments" | "trackedChanges" | "forms";
3689
4006
  readonly formatting?: boolean;
4007
+ readonly password?: string;
3690
4008
  readonly hashValue?: string;
3691
4009
  readonly saltValue?: string;
4010
+ readonly hash?: string;
4011
+ readonly salt?: string;
3692
4012
  readonly spinCount?: number;
3693
4013
  readonly algorithmName?: string;
4014
+ readonly cryptoAlgorithmClass?: string;
4015
+ readonly cryptoAlgorithmSid?: number;
4016
+ readonly cryptoAlgorithmType?: string;
4017
+ readonly cryptoProvider?: string;
4018
+ readonly cryptoProviderType?: string;
4019
+ readonly cryptoProviderTypeExtension?: number;
4020
+ readonly cryptoProviderTypeExtensionSource?: string;
4021
+ readonly algorithmExtensionId?: number;
4022
+ readonly algorithmExtensionSource?: string;
4023
+ readonly cryptoSpinCount?: number;
3694
4024
  }
3695
4025
  interface WriteProtectionOptions {
4026
+ readonly password?: string;
3696
4027
  readonly hashValue?: string;
3697
4028
  readonly saltValue?: string;
4029
+ readonly hash?: string;
4030
+ readonly salt?: string;
3698
4031
  readonly spinCount?: number;
3699
4032
  readonly algorithmName?: string;
3700
4033
  readonly recommended?: boolean;
4034
+ readonly cryptoAlgorithmClass?: string;
4035
+ readonly cryptoAlgorithmSid?: number;
4036
+ readonly cryptoAlgorithmType?: string;
4037
+ readonly cryptoProvider?: string;
4038
+ readonly cryptoProviderType?: string;
4039
+ readonly cryptoProviderTypeExtension?: number;
4040
+ readonly cryptoProviderTypeExtensionSource?: string;
4041
+ readonly algorithmExtensionId?: number;
4042
+ readonly algorithmExtensionSource?: string;
4043
+ readonly cryptoSpinCount?: number;
4044
+ }
4045
+ type MailMergeDocType = "catalog" | "envelopes" | "mailingLabels" | "formLetters" | "email" | "fax";
4046
+ type MailMergeDest = "newDocument" | "printer" | "email" | "fax";
4047
+ type MailMergeDataType = "textFile" | "database" | "spreadsheet" | "email" | "odbc" | "native" | "addressBook" | "legacy" | "master";
4048
+ type MailMergeSourceType = "database" | "addressBook" | "document1" | "document2" | "text" | "email" | "native" | "legacy" | "master";
4049
+ type OdsoFieldType = "null" | "dbColumn";
4050
+ interface OdsoFieldMapDataOptions {
4051
+ readonly type?: OdsoFieldType;
4052
+ readonly name?: string;
4053
+ readonly mappedName?: string;
4054
+ readonly column?: number;
4055
+ readonly lid?: string;
4056
+ readonly dynamicAddress?: boolean;
4057
+ }
4058
+ interface OdsoOptions {
4059
+ readonly udl?: string;
4060
+ readonly table?: string;
4061
+ readonly src?: string;
4062
+ readonly colDelim?: number;
4063
+ readonly type?: MailMergeSourceType;
4064
+ readonly fHdr?: boolean;
4065
+ readonly fieldMapData?: readonly OdsoFieldMapDataOptions[];
4066
+ readonly recipientData?: readonly string[];
4067
+ readonly uniqueTag?: string;
4068
+ }
4069
+ interface MailMergeOptions {
4070
+ readonly mainDocumentType: MailMergeDocType;
4071
+ readonly dataType: MailMergeDataType;
4072
+ readonly destination?: MailMergeDest;
4073
+ readonly connectString?: string;
4074
+ readonly query?: string;
4075
+ readonly dataSource?: string;
4076
+ readonly headerSource?: string;
4077
+ readonly doNotSuppressBlankLines?: boolean;
4078
+ readonly addressFieldName?: string;
4079
+ readonly mailSubject?: string;
4080
+ readonly mailAsAttachment?: boolean;
4081
+ readonly viewMergedData?: boolean;
4082
+ readonly activeRecord?: number;
4083
+ readonly checkErrors?: number;
4084
+ readonly linkToQuery?: boolean;
4085
+ readonly odso?: OdsoOptions;
4086
+ readonly active?: boolean;
4087
+ readonly recipients?: string;
3701
4088
  }
3702
4089
  interface HyphenationOptions {
3703
4090
  readonly autoHyphenation?: boolean;
@@ -3705,10 +4092,203 @@ interface HyphenationOptions {
3705
4092
  readonly consecutiveHyphenLimit?: number;
3706
4093
  readonly doNotHyphenateCaps?: boolean;
3707
4094
  }
4095
+ interface FootnotePropertiesOptions {
4096
+ readonly pos?: (typeof FootnotePositionType)[keyof typeof FootnotePositionType];
4097
+ readonly numFmt?: string;
4098
+ readonly format?: string;
4099
+ readonly numStart?: number;
4100
+ readonly numRestart?: string;
4101
+ }
4102
+ interface EndnotePropertiesOptions {
4103
+ readonly pos?: (typeof EndnotePositionType)[keyof typeof EndnotePositionType];
4104
+ readonly numFmt?: string;
4105
+ readonly format?: string;
4106
+ readonly numStart?: number;
4107
+ readonly numRestart?: string;
4108
+ }
4109
+ interface RsidsOptions {
4110
+ readonly rsidRoot?: string;
4111
+ readonly rsids?: readonly string[];
4112
+ }
4113
+ interface ReadModeInkLockDownOptions {
4114
+ readonly actualPg?: boolean;
4115
+ readonly w: number;
4116
+ readonly h: number;
4117
+ readonly fontSz: number;
4118
+ }
4119
+ interface CaptionOptions {
4120
+ readonly name: string;
4121
+ readonly pos?: "above" | "below";
4122
+ readonly chapNum?: boolean;
4123
+ readonly heading?: number;
4124
+ readonly noLabel?: boolean;
4125
+ readonly numFmt?: string;
4126
+ readonly sep?: "hyphen" | "period" | "colon" | "emDash" | "enDash";
4127
+ }
4128
+ interface AutoCaptionOptions {
4129
+ readonly name: string;
4130
+ readonly caption: string;
4131
+ }
4132
+ interface CaptionsOptions {
4133
+ readonly captions: readonly CaptionOptions[];
4134
+ readonly autoCaptions?: readonly AutoCaptionOptions[];
4135
+ }
4136
+ interface MathPropertiesOptions$1 {
4137
+ readonly mathFont?: string;
4138
+ readonly brkBin?: string;
4139
+ readonly brkBinSub?: string;
4140
+ readonly smallFrac?: boolean;
4141
+ readonly dispDef?: boolean;
4142
+ readonly lMargin?: number;
4143
+ readonly rMargin?: number;
4144
+ readonly defJc?: string;
4145
+ readonly wrapIndent?: number;
4146
+ readonly intLim?: string;
4147
+ readonly naryLim?: string;
4148
+ }
3708
4149
  declare class Settings extends XmlComponent {
3709
4150
  constructor(options: SettingsOptions);
3710
4151
  }
3711
4152
  //#endregion
4153
+ //#region src/file/frameset/frameset.d.ts
4154
+ interface FrameOptions {
4155
+ readonly size?: string;
4156
+ readonly name?: string;
4157
+ readonly title?: string;
4158
+ readonly sourceRId?: string;
4159
+ readonly marginWidth?: number;
4160
+ readonly marginHeight?: number;
4161
+ readonly scrollbar?: "on" | "off" | "auto";
4162
+ readonly noResizeAllowed?: boolean;
4163
+ readonly linkedToFile?: boolean;
4164
+ readonly longDescRId?: string;
4165
+ }
4166
+ interface FramesetSplitbarOptions {
4167
+ readonly width?: number;
4168
+ readonly color?: string;
4169
+ readonly noBorder?: boolean;
4170
+ readonly flatBorders?: boolean;
4171
+ }
4172
+ interface FramesetOptions {
4173
+ readonly size?: string;
4174
+ readonly splitbar?: FramesetSplitbarOptions;
4175
+ readonly layout?: "rows" | "cols";
4176
+ readonly title?: string;
4177
+ readonly children?: readonly (FramesetOptions | FrameOptions)[];
4178
+ }
4179
+ declare class Frameset extends XmlComponent {
4180
+ constructor(options: FramesetOptions);
4181
+ }
4182
+ //#endregion
4183
+ //#region src/file/web-settings/web-settings.d.ts
4184
+ interface DivBorderOptions {
4185
+ readonly top?: {
4186
+ readonly style: string;
4187
+ readonly color?: string;
4188
+ readonly size?: number;
4189
+ };
4190
+ readonly left?: {
4191
+ readonly style: string;
4192
+ readonly color?: string;
4193
+ readonly size?: number;
4194
+ };
4195
+ readonly bottom?: {
4196
+ readonly style: string;
4197
+ readonly color?: string;
4198
+ readonly size?: number;
4199
+ };
4200
+ readonly right?: {
4201
+ readonly style: string;
4202
+ readonly color?: string;
4203
+ readonly size?: number;
4204
+ };
4205
+ }
4206
+ interface DivOptions {
4207
+ readonly id: number;
4208
+ readonly marginLeft: number;
4209
+ readonly marginRight: number;
4210
+ readonly marginTop: number;
4211
+ readonly marginBottom: number;
4212
+ readonly blockQuote?: boolean;
4213
+ readonly bodyDiv?: boolean;
4214
+ readonly border?: DivBorderOptions;
4215
+ readonly children?: readonly DivOptions[];
4216
+ }
4217
+ declare const TargetScreenSize: {
4218
+ readonly SIZE_544X376: "544x376";
4219
+ readonly SIZE_640X480: "640x480";
4220
+ readonly SIZE_720X512: "720x512";
4221
+ readonly SIZE_800X600: "800x600";
4222
+ readonly SIZE_1024X768: "1024x768";
4223
+ readonly SIZE_1152X882: "1152x882";
4224
+ readonly SIZE_1152X900: "1152x900";
4225
+ readonly SIZE_1280X1024: "1280x1024";
4226
+ readonly SIZE_1600X1200: "1600x1200";
4227
+ readonly SIZE_1800X1440: "1800x1440";
4228
+ readonly SIZE_1920X1200: "1920x1200";
4229
+ };
4230
+ interface WebSettingsOptions {
4231
+ readonly frameset?: FramesetOptions;
4232
+ readonly divs?: readonly DivOptions[];
4233
+ readonly encoding?: string;
4234
+ readonly optimizeForBrowser?: boolean;
4235
+ readonly relyOnVML?: boolean;
4236
+ readonly allowPNG?: boolean;
4237
+ readonly doNotRelyOnCSS?: boolean;
4238
+ readonly doNotSaveAsSingleFile?: boolean;
4239
+ readonly doNotOrganizeInFolder?: boolean;
4240
+ readonly doNotUseLongFileNames?: boolean;
4241
+ readonly pixelsPerInch?: number;
4242
+ readonly targetScreenSz?: (typeof TargetScreenSize)[keyof typeof TargetScreenSize] | string;
4243
+ readonly saveSmartTagsAsXml?: boolean;
4244
+ }
4245
+ declare class WebSettings extends XmlComponent {
4246
+ constructor(options?: WebSettingsOptions);
4247
+ }
4248
+ //#endregion
4249
+ //#region src/file/fonts/font.d.ts
4250
+ declare const CharacterSet: {
4251
+ readonly ANSI: "00";
4252
+ readonly ARABIC: "B2";
4253
+ readonly BALTIC: "BA";
4254
+ readonly CHINESEBIG5: "88";
4255
+ readonly DEFAULT: "01";
4256
+ readonly EASTEUROPE: "EE";
4257
+ readonly GB_2312: "86";
4258
+ readonly GREEK: "A1";
4259
+ readonly HANGUL: "81";
4260
+ readonly HEBREW: "B1";
4261
+ readonly JIS: "80";
4262
+ readonly JOHAB: "82";
4263
+ readonly MAC: "4D";
4264
+ readonly OEM: "FF";
4265
+ readonly RUSSIAN: "CC";
4266
+ readonly SYMBOL: "02";
4267
+ readonly THAI: "DE";
4268
+ readonly TURKISH: "A2";
4269
+ readonly VIETNAMESE: "A3";
4270
+ };
4271
+ //#endregion
4272
+ //#region src/file/fonts/font-wrapper.d.ts
4273
+ type EmbeddedFontOptionsWithKey = EmbeddedFontOptions & {
4274
+ readonly fontKey: string;
4275
+ };
4276
+ declare class FontWrapper implements ViewWrapper {
4277
+ readonly options: readonly EmbeddedFontOptions[];
4278
+ private readonly fontTable;
4279
+ readonly relationships: Relationships;
4280
+ readonly fontOptionsWithKey: readonly EmbeddedFontOptionsWithKey[];
4281
+ constructor(options: readonly EmbeddedFontOptions[]);
4282
+ get view(): XmlComponent;
4283
+ }
4284
+ //#endregion
4285
+ //#region src/file/fonts/font-table.d.ts
4286
+ interface EmbeddedFontOptions {
4287
+ readonly name: string;
4288
+ readonly data: Buffer;
4289
+ readonly characterSet?: (typeof CharacterSet)[keyof typeof CharacterSet];
4290
+ }
4291
+ //#endregion
3712
4292
  //#region src/file/custom-properties/custom-property.d.ts
3713
4293
  interface CustomPropertyOptions {
3714
4294
  readonly name: string;
@@ -3802,6 +4382,14 @@ interface LevelsOptions {
3802
4382
  readonly start?: number;
3803
4383
  readonly suffix?: (typeof LevelSuffix)[keyof typeof LevelSuffix];
3804
4384
  readonly isLegalNumberingStyle?: boolean;
4385
+ readonly lvlRestart?: number;
4386
+ readonly lvlPicBulletId?: number;
4387
+ readonly templateCode?: string;
4388
+ readonly tentative?: boolean;
4389
+ readonly legacy?: {
4390
+ readonly space?: number;
4391
+ readonly indent?: number;
4392
+ };
3805
4393
  readonly style?: {
3806
4394
  readonly run?: RunStylePropertiesOptions;
3807
4395
  readonly paragraph?: LevelParagraphStylePropertiesOptions;
@@ -3818,7 +4406,12 @@ declare class LevelBase extends XmlComponent {
3818
4406
  start,
3819
4407
  style,
3820
4408
  suffix,
3821
- isLegalNumberingStyle
4409
+ isLegalNumberingStyle,
4410
+ lvlRestart,
4411
+ lvlPicBulletId,
4412
+ legacy,
4413
+ templateCode,
4414
+ tentative
3822
4415
  }: LevelsOptions);
3823
4416
  }
3824
4417
  declare class Level extends LevelBase {}
@@ -3852,6 +4445,11 @@ interface NumberingOptions {
3852
4445
  readonly levels: readonly LevelsOptions[];
3853
4446
  readonly reference: string;
3854
4447
  }[];
4448
+ readonly numIdMacAtCleanup?: number;
4449
+ readonly numPicBullets?: readonly {
4450
+ readonly numPicBulletId: number;
4451
+ readonly pict?: string;
4452
+ }[];
3855
4453
  }
3856
4454
  declare class Numbering extends XmlComponent {
3857
4455
  private readonly abstractNumberingMap;
@@ -3859,6 +4457,8 @@ declare class Numbering extends XmlComponent {
3859
4457
  private readonly referenceConfigMap;
3860
4458
  private readonly abstractNumUniqueNumericId;
3861
4459
  private readonly concreteNumUniqueNumericId;
4460
+ private readonly _numIdMacAtCleanup?;
4461
+ private readonly _numPicBullets?;
3862
4462
  constructor(options: NumberingOptions);
3863
4463
  toXml(context: Context): string;
3864
4464
  createConcreteNumberingInstance(reference: string, instance: number): void;
@@ -3867,9 +4467,16 @@ declare class Numbering extends XmlComponent {
3867
4467
  }
3868
4468
  //#endregion
3869
4469
  //#region src/file/numbering/abstract-numbering.d.ts
4470
+ interface AbstractNumberingOptions {
4471
+ readonly nsid?: string;
4472
+ readonly tmpl?: string;
4473
+ readonly name?: string;
4474
+ readonly styleLink?: string;
4475
+ readonly numStyleLink?: string;
4476
+ }
3870
4477
  declare class AbstractNumbering extends XmlComponent {
3871
4478
  readonly id: number;
3872
- constructor(id: number, levelOptions: readonly LevelsOptions[]);
4479
+ constructor(id: number, levelOptions: readonly LevelsOptions[], extraOptions?: AbstractNumberingOptions);
3873
4480
  }
3874
4481
  //#endregion
3875
4482
  //#region src/file/styles/defaults/paragraph-properties.d.ts
@@ -3934,6 +4541,12 @@ interface StyleOptions {
3934
4541
  readonly semiHidden?: boolean;
3935
4542
  readonly unhideWhenUsed?: boolean;
3936
4543
  readonly quickFormat?: boolean;
4544
+ readonly aliases?: string;
4545
+ readonly autoRedefine?: boolean;
4546
+ readonly locked?: boolean;
4547
+ readonly personal?: boolean;
4548
+ readonly personalCompose?: boolean;
4549
+ readonly personalReply?: boolean;
3937
4550
  readonly tableStyleOverrides?: readonly TableStyleOverrideOptions[];
3938
4551
  }
3939
4552
  declare class Style extends XmlComponent {
@@ -4049,6 +4662,10 @@ interface PropertiesOptions {
4049
4662
  readonly val: string;
4050
4663
  }[];
4051
4664
  readonly colorSchemeMapping?: SettingsOptions["colorSchemeMapping"];
4665
+ readonly mailMerge?: SettingsOptions["mailMerge"];
4666
+ readonly glossary?: GlossaryDocumentOptions;
4667
+ readonly settings?: SettingsOptions;
4668
+ readonly webSettings?: WebSettingsOptions;
4052
4669
  }
4053
4670
  declare class CoreProperties extends XmlComponent {
4054
4671
  constructor(options: Omit<PropertiesOptions, "sections">);
@@ -4121,6 +4738,8 @@ declare class File {
4121
4738
  readonly comments: Comments;
4122
4739
  readonly bibliography: Bibliography | undefined;
4123
4740
  readonly fontTable: FontWrapper;
4741
+ readonly glossaryOptions: GlossaryDocumentOptions | undefined;
4742
+ readonly webSettings: WebSettings | undefined;
4124
4743
  constructor(options: PropertiesOptions);
4125
4744
  private addSection;
4126
4745
  private createHeader;
@@ -4163,9 +4782,19 @@ declare const AlignmentType: {
4163
4782
  declare const createAlignment: (type: (typeof AlignmentType)[keyof typeof AlignmentType]) => XmlComponent;
4164
4783
  //#endregion
4165
4784
  //#region src/file/paragraph/formatting/unordered-list.d.ts
4166
- declare function buildNumberProperties(numberId: number | string, indentLevel: number): IXmlableObject;
4785
+ declare function buildNumberProperties(numberId: number | string, indentLevel: number, numberingChange?: {
4786
+ readonly original: string;
4787
+ readonly id: string;
4788
+ readonly author: string;
4789
+ readonly date?: string;
4790
+ }): IXmlableObject;
4167
4791
  declare class NumberProperties extends XmlComponent {
4168
- constructor(numberId: number | string, indentLevel: number);
4792
+ constructor(numberId: number | string, indentLevel: number, numberingChange?: {
4793
+ readonly original: string;
4794
+ readonly id: string;
4795
+ readonly author: string;
4796
+ readonly date?: string;
4797
+ });
4169
4798
  }
4170
4799
  //#endregion
4171
4800
  //#region src/file/coerce.d.ts
@@ -4193,8 +4822,39 @@ declare class Textbox extends XmlComponent implements FileChild {
4193
4822
  declare namespace index_d_exports$3 {
4194
4823
  export { COLOR_CATEGORIES, DEFAULT_DRAWING_XML, LAYOUT_CATEGORIES, STYLE_CATEGORIES, SmartArtCollection, SmartArtData, TreeNode, createDataModel, getColorXml, getLayoutXml, getStyleXml };
4195
4824
  }
4825
+ //#endregion
4826
+ //#region src/file/object/object-element.d.ts
4827
+ interface ObjectEmbedOptions {
4828
+ readonly rId: string;
4829
+ readonly progId?: string;
4830
+ readonly drawAspect?: string;
4831
+ readonly shapeId?: string;
4832
+ readonly fieldCodes?: string;
4833
+ }
4834
+ interface ObjectLinkOptions extends ObjectEmbedOptions {
4835
+ readonly updateMode: string;
4836
+ readonly lockedField?: boolean;
4837
+ }
4838
+ interface ObjectElementOptions {
4839
+ readonly style?: VmlShapeStyle;
4840
+ readonly shapeId?: string;
4841
+ readonly dxaOrig?: number;
4842
+ readonly dyaOrig?: number;
4843
+ readonly embed?: ObjectEmbedOptions;
4844
+ readonly link?: ObjectLinkOptions;
4845
+ readonly control?: {
4846
+ readonly name?: string;
4847
+ readonly shapeid?: string;
4848
+ readonly rId?: string;
4849
+ };
4850
+ readonly movie?: string;
4851
+ }
4852
+ declare class ObjectElement extends XmlComponent implements FileChild {
4853
+ readonly fileChild: symbol;
4854
+ constructor(options: ObjectElementOptions);
4855
+ }
4196
4856
  declare namespace index_d_exports$2 {
4197
- 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 };
4857
+ export { AbstractNumbering, AbstractNumberingOptions, 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, CustomXmlAttributeOptions, CustomXmlBlock, CustomXmlBlockOptions, CustomXmlCell, CustomXmlCellOptions, CustomXmlDataBindingOptions, CustomXmlDelRangeEnd, CustomXmlDelRangeStart, CustomXmlInsRangeEnd, CustomXmlInsRangeStart, CustomXmlMoveFromRangeEnd, CustomXmlMoveFromRangeStart, CustomXmlMoveToRangeEnd, CustomXmlMoveToRangeStart, CustomXmlPrOptions, CustomXmlRow, CustomXmlRowOptions, CustomXmlRun, CustomXmlRunOptions, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, DocPartBehavior, DocPartGallery, DocPartOptions, DocPartType, 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, FrameOptions, FrameWrap, Frameset, FramesetOptions, FramesetSplitbarOptions, GlossaryDocumentOptions, 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, MathArgPropertiesOptions, 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, MathMatrixColumnOptions, 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, ObjectElement, ObjectElementOptions, ObjectEmbedOptions, ObjectLinkOptions, 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, ProofError, ProofErrorType, ProofErrorTypeValue, 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, SmartTagRun, SmartTagRunOptions, 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
4858
  }
4199
4859
  //#endregion
4200
4860
  //#region src/export/packer/packer.d.ts
@@ -4284,8 +4944,8 @@ interface DocxDocument {
4284
4944
  declare function parseDocument(data: DataType): PropertiesOptions;
4285
4945
  declare function parseDocx(data: DataType): DocxDocument;
4286
4946
  declare namespace index_d_exports {
4287
- 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 };
4947
+ export { AbstractNumbering, AbstractNumberingOptions, 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, CustomXmlAttributeOptions, CustomXmlBlock, CustomXmlBlockOptions, CustomXmlCell, CustomXmlCellOptions, CustomXmlDataBindingOptions, CustomXmlDelRangeEnd, CustomXmlDelRangeStart, CustomXmlInsRangeEnd, CustomXmlInsRangeStart, CustomXmlMoveFromRangeEnd, CustomXmlMoveFromRangeStart, CustomXmlMoveToRangeEnd, CustomXmlMoveToRangeStart, CustomXmlPrOptions, CustomXmlRow, CustomXmlRowOptions, CustomXmlRun, CustomXmlRunOptions, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, DocPartBehavior, DocPartGallery, DocPartOptions, DocPartType, 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, FrameOptions, FrameWrap, Frameset, FramesetOptions, FramesetSplitbarOptions, GlossaryDocumentOptions, 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, MathArgPropertiesOptions, 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, MathMatrixColumnOptions, 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, ObjectElement, ObjectElementOptions, ObjectEmbedOptions, ObjectLinkOptions, 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, ProofError, ProofErrorType, ProofErrorTypeValue, 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, SmartTagRun, SmartTagRunOptions, 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
4948
  }
4289
4949
  //#endregion
4290
- 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 };
4950
+ export { AbstractNumbering, AbstractNumberingOptions, 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, type CustomXmlAttributeOptions, CustomXmlBlock, type CustomXmlBlockOptions, CustomXmlCell, type CustomXmlCellOptions, type CustomXmlDataBindingOptions, CustomXmlDelRangeEnd, CustomXmlDelRangeStart, CustomXmlInsRangeEnd, CustomXmlInsRangeStart, CustomXmlMoveFromRangeEnd, CustomXmlMoveFromRangeStart, CustomXmlMoveToRangeEnd, CustomXmlMoveToRangeStart, type CustomXmlPrOptions, CustomXmlRow, type CustomXmlRowOptions, CustomXmlRun, type CustomXmlRunOptions, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, DocPartBehavior, DocPartGallery, DocPartOptions, DocPartType, 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, type FrameOptions, FrameWrap, Frameset, type FramesetOptions, type FramesetSplitbarOptions, GlossaryDocumentOptions, 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, MathArgPropertiesOptions, 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, MathMatrixColumnOptions, 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, ObjectElement, type ObjectElementOptions, type ObjectEmbedOptions, type ObjectLinkOptions, 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, ProofError, ProofErrorType, ProofErrorTypeValue, 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, SmartTagRun, SmartTagRunOptions, 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
4951
  //# sourceMappingURL=index.d.mts.map