@office-open/docx 0.7.1 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -6
- package/dist/{chunk-DHfcOUro.mjs → chunk-BBjsoOtd.mjs} +1 -3
- package/dist/index.d.mts +751 -89
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +16711 -8507
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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,10 @@ type SectionChild = BaseXmlComponent | {
|
|
|
1941
1936
|
altChunk: AltChunkOptions;
|
|
1942
1937
|
} | {
|
|
1943
1938
|
subDoc: SubDocOptions;
|
|
1939
|
+
} | {
|
|
1940
|
+
customXml: Omit<CustomXmlBlockOptions, "children"> & {
|
|
1941
|
+
readonly children?: readonly SectionChild[];
|
|
1942
|
+
};
|
|
1944
1943
|
};
|
|
1945
1944
|
//#endregion
|
|
1946
1945
|
//#region src/file/track-revision/track-revision-components/inserted-text-run.d.ts
|
|
@@ -2060,6 +2059,8 @@ interface TableCellBordersOptions {
|
|
|
2060
2059
|
readonly bottom?: BorderOptions;
|
|
2061
2060
|
readonly end?: BorderOptions;
|
|
2062
2061
|
readonly right?: BorderOptions;
|
|
2062
|
+
readonly topLeftToBottomRight?: BorderOptions;
|
|
2063
|
+
readonly topRightToBottomLeft?: BorderOptions;
|
|
2063
2064
|
}
|
|
2064
2065
|
declare function buildTableCellBorders(options: TableCellBordersOptions): IXmlableObject | undefined;
|
|
2065
2066
|
declare class TableCellBorders extends IgnoreIfEmptyXmlComponent {
|
|
@@ -2126,8 +2127,12 @@ declare class TableCell extends BaseXmlComponent {
|
|
|
2126
2127
|
//#endregion
|
|
2127
2128
|
//#region src/file/table/table-row/table-row.d.ts
|
|
2128
2129
|
type TableRowOptions = {
|
|
2129
|
-
readonly cells: readonly (TableCell | StructuredDocumentTagCell | StructuredDocumentTagRow | TableCellOptions)[];
|
|
2130
|
+
readonly cells: readonly (TableCell | StructuredDocumentTagCell | StructuredDocumentTagRow | CustomXmlCell | TableCellOptions)[];
|
|
2130
2131
|
readonly propertyExceptions?: TablePropertyExOptions;
|
|
2132
|
+
readonly rsidRPr?: string;
|
|
2133
|
+
readonly rsidR?: string;
|
|
2134
|
+
readonly rsidDel?: string;
|
|
2135
|
+
readonly rsidTr?: string;
|
|
2131
2136
|
} & ITableRowPropertiesOptions;
|
|
2132
2137
|
declare class TableRow extends BaseXmlComponent {
|
|
2133
2138
|
private readonly options;
|
|
@@ -2145,7 +2150,7 @@ declare class TableRow extends BaseXmlComponent {
|
|
|
2145
2150
|
//#endregion
|
|
2146
2151
|
//#region src/file/table/table.d.ts
|
|
2147
2152
|
interface TableOptions {
|
|
2148
|
-
readonly rows: readonly (TableRow | StructuredDocumentTagRow | TableRowOptions)[];
|
|
2153
|
+
readonly rows: readonly (TableRow | StructuredDocumentTagRow | CustomXmlRow | TableRowOptions)[];
|
|
2149
2154
|
readonly width?: TableWidthProperties;
|
|
2150
2155
|
readonly columnWidths?: readonly number[];
|
|
2151
2156
|
readonly columnWidthsRevision?: TableGridChangeOptions;
|
|
@@ -2197,6 +2202,88 @@ declare class StructuredDocumentTagRow extends XmlComponent {
|
|
|
2197
2202
|
addCellToColumnIndex(cell: TableCell, columnIndex: number): void;
|
|
2198
2203
|
}
|
|
2199
2204
|
//#endregion
|
|
2205
|
+
//#region src/file/custom-xml/custom-xml.d.ts
|
|
2206
|
+
interface CustomXmlDataBindingOptions {
|
|
2207
|
+
readonly xpath: string;
|
|
2208
|
+
readonly storeItemID: string;
|
|
2209
|
+
readonly prefixMappings?: string;
|
|
2210
|
+
}
|
|
2211
|
+
interface CustomXmlAttributeOptions {
|
|
2212
|
+
readonly name: string;
|
|
2213
|
+
readonly val: string;
|
|
2214
|
+
readonly uri?: string;
|
|
2215
|
+
}
|
|
2216
|
+
interface CustomXmlPrOptions {
|
|
2217
|
+
readonly placeholder?: string;
|
|
2218
|
+
readonly attributes?: readonly CustomXmlAttributeOptions[];
|
|
2219
|
+
}
|
|
2220
|
+
interface CustomXmlRunOptions {
|
|
2221
|
+
readonly element: string;
|
|
2222
|
+
readonly uri?: string;
|
|
2223
|
+
readonly customXmlPr?: CustomXmlPrOptions;
|
|
2224
|
+
readonly children?: readonly BaseXmlComponent[];
|
|
2225
|
+
}
|
|
2226
|
+
interface CustomXmlBlockOptions {
|
|
2227
|
+
readonly element: string;
|
|
2228
|
+
readonly uri?: string;
|
|
2229
|
+
readonly customXmlPr?: CustomXmlPrOptions;
|
|
2230
|
+
readonly children?: readonly FileChild[];
|
|
2231
|
+
}
|
|
2232
|
+
interface CustomXmlRowOptions {
|
|
2233
|
+
readonly element: string;
|
|
2234
|
+
readonly uri?: string;
|
|
2235
|
+
readonly customXmlPr?: CustomXmlPrOptions;
|
|
2236
|
+
readonly children?: readonly TableRow[];
|
|
2237
|
+
}
|
|
2238
|
+
interface CustomXmlCellOptions {
|
|
2239
|
+
readonly element: string;
|
|
2240
|
+
readonly uri?: string;
|
|
2241
|
+
readonly customXmlPr?: CustomXmlPrOptions;
|
|
2242
|
+
readonly children?: readonly (TableCell | StructuredDocumentTagCell)[];
|
|
2243
|
+
}
|
|
2244
|
+
declare class CustomXmlRun extends XmlComponent {
|
|
2245
|
+
constructor(options: CustomXmlRunOptions);
|
|
2246
|
+
}
|
|
2247
|
+
declare class CustomXmlBlock extends XmlComponent {
|
|
2248
|
+
readonly fileChild: symbol;
|
|
2249
|
+
constructor(options: CustomXmlBlockOptions);
|
|
2250
|
+
}
|
|
2251
|
+
declare class CustomXmlRow extends XmlComponent {
|
|
2252
|
+
private readonly rows;
|
|
2253
|
+
constructor(options: CustomXmlRowOptions);
|
|
2254
|
+
get cellCount(): number;
|
|
2255
|
+
get cells(): readonly TableCell[];
|
|
2256
|
+
addCellToColumnIndex(cell: TableCell, columnIndex: number): void;
|
|
2257
|
+
}
|
|
2258
|
+
declare class CustomXmlCell extends XmlComponent {
|
|
2259
|
+
constructor(options: CustomXmlCellOptions);
|
|
2260
|
+
}
|
|
2261
|
+
//#endregion
|
|
2262
|
+
//#region src/file/permissions/perm-start.d.ts
|
|
2263
|
+
declare const EditGroupType: {
|
|
2264
|
+
readonly NONE: "none";
|
|
2265
|
+
readonly EVERYONE: "everyone";
|
|
2266
|
+
readonly ADMINISTRATORS: "administrators";
|
|
2267
|
+
readonly CONTRIBUTORS: "contributors";
|
|
2268
|
+
readonly EDITORS: "editors";
|
|
2269
|
+
readonly OWNERS: "owners";
|
|
2270
|
+
readonly CURRENT: "current";
|
|
2271
|
+
};
|
|
2272
|
+
type EditGroup = (typeof EditGroupType)[keyof typeof EditGroupType];
|
|
2273
|
+
interface PermStartOptions {
|
|
2274
|
+
readonly id: string | number;
|
|
2275
|
+
readonly edGroup?: EditGroup;
|
|
2276
|
+
readonly ed?: string;
|
|
2277
|
+
readonly colFirst?: number;
|
|
2278
|
+
readonly colLast?: number;
|
|
2279
|
+
}
|
|
2280
|
+
declare class PermStart extends XmlComponent {
|
|
2281
|
+
constructor(options: PermStartOptions);
|
|
2282
|
+
}
|
|
2283
|
+
declare class PermEnd extends XmlComponent {
|
|
2284
|
+
constructor(id: string | number);
|
|
2285
|
+
}
|
|
2286
|
+
//#endregion
|
|
2200
2287
|
//#region src/file/sub-doc/sub-doc-collection.d.ts
|
|
2201
2288
|
interface SubDocData {
|
|
2202
2289
|
readonly data: Uint8Array;
|
|
@@ -2266,10 +2353,10 @@ declare class Bookmark {
|
|
|
2266
2353
|
constructor(options: BookmarkOptions);
|
|
2267
2354
|
}
|
|
2268
2355
|
declare class BookmarkStart extends XmlComponent {
|
|
2269
|
-
constructor(id: string, linkId: number);
|
|
2356
|
+
constructor(id: string, linkId: number, displacedByCustomXml?: "before" | "after");
|
|
2270
2357
|
}
|
|
2271
2358
|
declare class BookmarkEnd extends XmlComponent {
|
|
2272
|
-
constructor(linkId: number);
|
|
2359
|
+
constructor(linkId: number, displacedByCustomXml?: "before" | "after");
|
|
2273
2360
|
}
|
|
2274
2361
|
//#endregion
|
|
2275
2362
|
//#region src/file/paragraph/links/move-bookmark.d.ts
|
|
@@ -2518,14 +2605,19 @@ declare class MathRun extends XmlComponent {
|
|
|
2518
2605
|
}
|
|
2519
2606
|
//#endregion
|
|
2520
2607
|
//#region src/file/paragraph/math/matrix/math-matrix-properties.d.ts
|
|
2608
|
+
interface MathMatrixColumnOptions {
|
|
2609
|
+
readonly count?: number;
|
|
2610
|
+
readonly mcJc?: "left" | "center" | "right" | "inside" | "outside";
|
|
2611
|
+
}
|
|
2521
2612
|
interface MathMatrixPropertiesOptions {
|
|
2522
2613
|
readonly baseJc?: "top" | "bot" | "center";
|
|
2523
2614
|
readonly plcHide?: boolean;
|
|
2524
|
-
readonly rSpRule?:
|
|
2525
|
-
readonly cGpRule?:
|
|
2615
|
+
readonly rSpRule?: 0 | 1 | 2 | 3 | 4;
|
|
2616
|
+
readonly cGpRule?: 0 | 1 | 2 | 3 | 4;
|
|
2526
2617
|
readonly rSp?: number;
|
|
2527
2618
|
readonly cSp?: number;
|
|
2528
2619
|
readonly cGp?: number;
|
|
2620
|
+
readonly mcs?: readonly MathMatrixColumnOptions[];
|
|
2529
2621
|
}
|
|
2530
2622
|
declare const createMathMatrixProperties: (options: MathMatrixPropertiesOptions) => XmlComponent;
|
|
2531
2623
|
//#endregion
|
|
@@ -2547,11 +2639,16 @@ declare const createMathAccentCharacter: ({
|
|
|
2547
2639
|
}: MathAccentCharacterOptions) => XmlComponent;
|
|
2548
2640
|
//#endregion
|
|
2549
2641
|
//#region src/file/paragraph/math/n-ary/math-base.d.ts
|
|
2642
|
+
interface MathArgPropertiesOptions {
|
|
2643
|
+
readonly argSz?: number;
|
|
2644
|
+
}
|
|
2550
2645
|
interface MathBaseOptions {
|
|
2551
2646
|
readonly children: readonly MathComponent[];
|
|
2647
|
+
readonly argPr?: MathArgPropertiesOptions;
|
|
2552
2648
|
}
|
|
2553
2649
|
declare const createMathBase: ({
|
|
2554
|
-
children
|
|
2650
|
+
children,
|
|
2651
|
+
argPr
|
|
2555
2652
|
}: MathBaseOptions) => XmlComponent;
|
|
2556
2653
|
//#endregion
|
|
2557
2654
|
//#region src/file/paragraph/math/n-ary/math-limit-location.d.ts
|
|
@@ -2957,6 +3054,7 @@ interface BordersOptions {
|
|
|
2957
3054
|
readonly left?: BorderOptions;
|
|
2958
3055
|
readonly right?: BorderOptions;
|
|
2959
3056
|
readonly between?: BorderOptions;
|
|
3057
|
+
readonly bar?: BorderOptions;
|
|
2960
3058
|
}
|
|
2961
3059
|
declare class Border extends IgnoreIfEmptyXmlComponent {
|
|
2962
3060
|
constructor(options: BordersOptions);
|
|
@@ -3224,6 +3322,12 @@ type IParagraphStylePropertiesOptions = {
|
|
|
3224
3322
|
readonly level: number;
|
|
3225
3323
|
readonly instance?: number;
|
|
3226
3324
|
readonly custom?: boolean;
|
|
3325
|
+
readonly numberingChange?: {
|
|
3326
|
+
readonly original: string;
|
|
3327
|
+
readonly id: string;
|
|
3328
|
+
readonly author: string;
|
|
3329
|
+
readonly date?: string;
|
|
3330
|
+
};
|
|
3227
3331
|
} | false;
|
|
3228
3332
|
} & LevelParagraphStylePropertiesOptions;
|
|
3229
3333
|
type IParagraphPropertiesOptionsBase = {
|
|
@@ -3257,9 +3361,36 @@ declare class ParagraphPropertiesChange extends XmlComponent {
|
|
|
3257
3361
|
constructor(options: IParagraphPropertiesChangeOptions);
|
|
3258
3362
|
}
|
|
3259
3363
|
//#endregion
|
|
3364
|
+
//#region src/file/paragraph/run/proof-error.d.ts
|
|
3365
|
+
declare const ProofErrorType: {
|
|
3366
|
+
readonly SPELL_START: "spellStart";
|
|
3367
|
+
readonly SPELL_END: "spellEnd";
|
|
3368
|
+
readonly GRAM_START: "gramStart";
|
|
3369
|
+
readonly GRAM_END: "gramEnd";
|
|
3370
|
+
};
|
|
3371
|
+
type ProofErrorTypeValue = (typeof ProofErrorType)[keyof typeof ProofErrorType];
|
|
3372
|
+
declare class ProofError extends XmlComponent {
|
|
3373
|
+
constructor(type: ProofErrorTypeValue);
|
|
3374
|
+
}
|
|
3375
|
+
//#endregion
|
|
3376
|
+
//#region src/file/paragraph/run/smart-tag-run.d.ts
|
|
3377
|
+
interface SmartTagRunOptions {
|
|
3378
|
+
readonly uri?: string;
|
|
3379
|
+
readonly element: string;
|
|
3380
|
+
readonly properties?: readonly {
|
|
3381
|
+
readonly uri: string;
|
|
3382
|
+
readonly name: string;
|
|
3383
|
+
readonly val: string;
|
|
3384
|
+
}[];
|
|
3385
|
+
readonly children?: readonly ParagraphChild[];
|
|
3386
|
+
}
|
|
3387
|
+
declare class SmartTagRun extends XmlComponent {
|
|
3388
|
+
constructor(options: SmartTagRunOptions);
|
|
3389
|
+
}
|
|
3390
|
+
//#endregion
|
|
3260
3391
|
//#region src/file/paragraph/paragraph.d.ts
|
|
3261
3392
|
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;
|
|
3393
|
+
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
3394
|
interface ChartChild {
|
|
3264
3395
|
readonly chart: ChartOptions;
|
|
3265
3396
|
}
|
|
@@ -3312,6 +3443,11 @@ type IParagraphJsonChild = ChartChild | SmartArtChild | ImageChild | MathChild |
|
|
|
3312
3443
|
type ParagraphOptions = {
|
|
3313
3444
|
readonly text?: string;
|
|
3314
3445
|
readonly children?: readonly (ParagraphChild | RunOptions | IParagraphJsonChild | string)[];
|
|
3446
|
+
readonly rsidR?: string;
|
|
3447
|
+
readonly rsidRPr?: string;
|
|
3448
|
+
readonly rsidRDefault?: string;
|
|
3449
|
+
readonly rsidDel?: string;
|
|
3450
|
+
readonly rsidP?: string;
|
|
3315
3451
|
} & ParagraphPropertiesOptions;
|
|
3316
3452
|
declare class Paragraph extends BaseXmlComponent implements FileChild {
|
|
3317
3453
|
readonly fileChild: symbol;
|
|
@@ -3464,6 +3600,32 @@ declare const createBreak: (options?: {
|
|
|
3464
3600
|
readonly clear?: "none" | "left" | "right" | "all";
|
|
3465
3601
|
}) => XmlComponent;
|
|
3466
3602
|
//#endregion
|
|
3603
|
+
//#region src/file/paragraph/run/custom-xml-range.d.ts
|
|
3604
|
+
declare class CustomXmlInsRangeStart extends XmlComponent {
|
|
3605
|
+
constructor(id: number, author: string, date?: string);
|
|
3606
|
+
}
|
|
3607
|
+
declare class CustomXmlInsRangeEnd extends XmlComponent {
|
|
3608
|
+
constructor(id: number);
|
|
3609
|
+
}
|
|
3610
|
+
declare class CustomXmlDelRangeStart extends XmlComponent {
|
|
3611
|
+
constructor(id: number, author: string, date?: string);
|
|
3612
|
+
}
|
|
3613
|
+
declare class CustomXmlDelRangeEnd extends XmlComponent {
|
|
3614
|
+
constructor(id: number);
|
|
3615
|
+
}
|
|
3616
|
+
declare class CustomXmlMoveFromRangeStart extends XmlComponent {
|
|
3617
|
+
constructor(id: number, author: string, date?: string);
|
|
3618
|
+
}
|
|
3619
|
+
declare class CustomXmlMoveFromRangeEnd extends XmlComponent {
|
|
3620
|
+
constructor(id: number);
|
|
3621
|
+
}
|
|
3622
|
+
declare class CustomXmlMoveToRangeStart extends XmlComponent {
|
|
3623
|
+
constructor(id: number, author: string, date?: string);
|
|
3624
|
+
}
|
|
3625
|
+
declare class CustomXmlMoveToRangeEnd extends XmlComponent {
|
|
3626
|
+
constructor(id: number);
|
|
3627
|
+
}
|
|
3628
|
+
//#endregion
|
|
3467
3629
|
//#region src/file/endnotes/endnote/run/reference-run.d.ts
|
|
3468
3630
|
declare class EndnoteIdReference extends XmlComponent {
|
|
3469
3631
|
constructor(id: number);
|
|
@@ -3516,6 +3678,8 @@ declare class Bibliography extends XmlComponent {
|
|
|
3516
3678
|
declare class ContentTypes extends XmlComponent {
|
|
3517
3679
|
constructor();
|
|
3518
3680
|
addBibliography(): void;
|
|
3681
|
+
addGlossary(): void;
|
|
3682
|
+
addWebSettings(): void;
|
|
3519
3683
|
addFooter(index: number): void;
|
|
3520
3684
|
addHeader(index: number): void;
|
|
3521
3685
|
addChart(index: number): void;
|
|
@@ -3528,47 +3692,77 @@ declare class ContentTypes extends XmlComponent {
|
|
|
3528
3692
|
addSubDoc(path: string): void;
|
|
3529
3693
|
}
|
|
3530
3694
|
//#endregion
|
|
3531
|
-
//#region src/file/
|
|
3532
|
-
declare const
|
|
3533
|
-
readonly
|
|
3534
|
-
readonly
|
|
3535
|
-
readonly
|
|
3536
|
-
readonly
|
|
3537
|
-
readonly
|
|
3538
|
-
readonly
|
|
3539
|
-
readonly
|
|
3540
|
-
readonly
|
|
3541
|
-
readonly
|
|
3542
|
-
readonly
|
|
3543
|
-
readonly
|
|
3544
|
-
readonly
|
|
3545
|
-
readonly
|
|
3546
|
-
readonly
|
|
3547
|
-
readonly
|
|
3548
|
-
readonly
|
|
3549
|
-
readonly
|
|
3550
|
-
readonly
|
|
3551
|
-
readonly
|
|
3695
|
+
//#region src/file/glossary/glossary-document.d.ts
|
|
3696
|
+
declare const DocPartGallery: {
|
|
3697
|
+
readonly PLACEHOLDER: "placeholder";
|
|
3698
|
+
readonly DEFAULT: "default";
|
|
3699
|
+
readonly DOC_PARTS: "docParts";
|
|
3700
|
+
readonly COVER_PAGE: "coverPg";
|
|
3701
|
+
readonly EQUATIONS: "eq";
|
|
3702
|
+
readonly FOOTERS: "ftrs";
|
|
3703
|
+
readonly HEADERS: "hdrs";
|
|
3704
|
+
readonly PAGE_NUMBERS: "pgNum";
|
|
3705
|
+
readonly TABLES: "tbls";
|
|
3706
|
+
readonly WATERMARKS: "watermarks";
|
|
3707
|
+
readonly AUTO_TEXT: "autoTxt";
|
|
3708
|
+
readonly TEXT_BOX: "txtBox";
|
|
3709
|
+
readonly PAGE_NUMBERS_TOP: "pgNumT";
|
|
3710
|
+
readonly PAGE_NUMBERS_BOTTOM: "pgNumB";
|
|
3711
|
+
readonly PAGE_NUMBERS_MARGIN: "pgNumMargins";
|
|
3712
|
+
readonly TABLE_OF_CONTENTS: "tblOfContents";
|
|
3713
|
+
readonly BIBLIOGRAPHY: "bib";
|
|
3714
|
+
readonly CUSTOM_QUICK_PARTS: "custQuickParts";
|
|
3715
|
+
readonly CUSTOM_COVER_PAGE: "custCoverPg";
|
|
3716
|
+
readonly CUSTOM_EQUATIONS: "custEq";
|
|
3717
|
+
readonly CUSTOM_FOOTERS: "custFtrs";
|
|
3718
|
+
readonly CUSTOM_HEADERS: "custHdrs";
|
|
3719
|
+
readonly CUSTOM_PAGE_NUMBERS: "custPgNum";
|
|
3720
|
+
readonly CUSTOM_TABLES: "custTbls";
|
|
3721
|
+
readonly CUSTOM_WATERMARKS: "custWatermarks";
|
|
3722
|
+
readonly CUSTOM_AUTO_TEXT: "custAutoTxt";
|
|
3723
|
+
readonly CUSTOM_TEXT_BOX: "custTxtBox";
|
|
3724
|
+
readonly CUSTOM_PAGE_NUMBERS_TOP: "custPgNumT";
|
|
3725
|
+
readonly CUSTOM_PAGE_NUMBERS_BOTTOM: "custPgNumB";
|
|
3726
|
+
readonly CUSTOM_PAGE_NUMBERS_MARGIN: "custPgNumMargins";
|
|
3727
|
+
readonly CUSTOM_TABLE_OF_CONTENTS: "custTblOfContents";
|
|
3728
|
+
readonly CUSTOM_BIBLIOGRAPHY: "custBib";
|
|
3729
|
+
readonly CUSTOM1: "custom1";
|
|
3730
|
+
readonly CUSTOM2: "custom2";
|
|
3731
|
+
readonly CUSTOM3: "custom3";
|
|
3732
|
+
readonly CUSTOM4: "custom4";
|
|
3733
|
+
readonly CUSTOM5: "custom5";
|
|
3552
3734
|
};
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
readonly
|
|
3735
|
+
type DocPartGallery = (typeof DocPartGallery)[keyof typeof DocPartGallery];
|
|
3736
|
+
declare const DocPartType: {
|
|
3737
|
+
readonly NONE: "none";
|
|
3738
|
+
readonly NORMAL: "normal";
|
|
3739
|
+
readonly AUTO_EXPAND: "autoExp";
|
|
3740
|
+
readonly TOOLBAR: "toolbar";
|
|
3741
|
+
readonly SPELLER: "speller";
|
|
3742
|
+
readonly FORM_FIELD: "formFld";
|
|
3743
|
+
readonly BUILDING_BLOCK_PLACEHOLDER: "bbPlcHdr";
|
|
3557
3744
|
};
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
readonly
|
|
3562
|
-
readonly
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
//#endregion
|
|
3567
|
-
//#region src/file/fonts/font-table.d.ts
|
|
3568
|
-
interface EmbeddedFontOptions {
|
|
3745
|
+
type DocPartType = (typeof DocPartType)[keyof typeof DocPartType];
|
|
3746
|
+
declare const DocPartBehavior: {
|
|
3747
|
+
readonly CONTENT: "content";
|
|
3748
|
+
readonly PARAGRAPH: "p";
|
|
3749
|
+
readonly PAGE: "pg";
|
|
3750
|
+
};
|
|
3751
|
+
type DocPartBehavior = (typeof DocPartBehavior)[keyof typeof DocPartBehavior];
|
|
3752
|
+
interface DocPartOptions {
|
|
3569
3753
|
readonly name: string;
|
|
3570
|
-
readonly
|
|
3571
|
-
readonly
|
|
3754
|
+
readonly gallery: DocPartGallery;
|
|
3755
|
+
readonly category?: string;
|
|
3756
|
+
readonly types?: readonly DocPartType[];
|
|
3757
|
+
readonly allTypes?: boolean;
|
|
3758
|
+
readonly behaviors?: readonly DocPartBehavior[];
|
|
3759
|
+
readonly description?: string;
|
|
3760
|
+
readonly guid?: string;
|
|
3761
|
+
readonly decorated?: boolean;
|
|
3762
|
+
readonly children: readonly FileChild[];
|
|
3763
|
+
}
|
|
3764
|
+
interface GlossaryDocumentOptions {
|
|
3765
|
+
readonly parts: readonly DocPartOptions[];
|
|
3572
3766
|
}
|
|
3573
3767
|
//#endregion
|
|
3574
3768
|
//#region src/file/settings/compatibility.d.ts
|
|
@@ -3649,6 +3843,9 @@ interface SettingsOptions {
|
|
|
3649
3843
|
readonly compatibilityModeVersion?: number;
|
|
3650
3844
|
readonly evenAndOddHeaders?: boolean;
|
|
3651
3845
|
readonly trackRevisions?: boolean;
|
|
3846
|
+
readonly doNotTrackFormatting?: boolean;
|
|
3847
|
+
readonly doNotTrackMoves?: boolean;
|
|
3848
|
+
readonly revisionView?: RevisionViewOptions;
|
|
3652
3849
|
readonly updateFields?: boolean;
|
|
3653
3850
|
readonly compatibility?: CompatibilityOptions;
|
|
3654
3851
|
readonly defaultTabStop?: number;
|
|
@@ -3662,6 +3859,7 @@ interface SettingsOptions {
|
|
|
3662
3859
|
};
|
|
3663
3860
|
readonly writeProtection?: WriteProtectionOptions;
|
|
3664
3861
|
readonly displayBackgroundShape?: boolean;
|
|
3862
|
+
readonly doNotDisplayPageBoundaries?: boolean;
|
|
3665
3863
|
readonly embedTrueTypeFonts?: boolean;
|
|
3666
3864
|
readonly embedSystemFonts?: boolean;
|
|
3667
3865
|
readonly saveSubsetFonts?: boolean;
|
|
@@ -3669,6 +3867,7 @@ interface SettingsOptions {
|
|
|
3669
3867
|
readonly name: string;
|
|
3670
3868
|
readonly val: string;
|
|
3671
3869
|
}[];
|
|
3870
|
+
readonly mailMerge?: MailMergeOptions;
|
|
3672
3871
|
readonly colorSchemeMapping?: {
|
|
3673
3872
|
readonly bg1?: string;
|
|
3674
3873
|
readonly t1?: string;
|
|
@@ -3683,21 +3882,211 @@ interface SettingsOptions {
|
|
|
3683
3882
|
readonly hyperlink?: string;
|
|
3684
3883
|
readonly followedHyperlink?: string;
|
|
3685
3884
|
};
|
|
3885
|
+
readonly attachedTemplate?: string;
|
|
3886
|
+
readonly themeFontLang?: string;
|
|
3887
|
+
readonly hideSpellingErrors?: boolean;
|
|
3888
|
+
readonly hideGrammaticalErrors?: boolean;
|
|
3889
|
+
readonly noPunctuationKerning?: boolean;
|
|
3890
|
+
readonly removePersonalInformation?: boolean;
|
|
3891
|
+
readonly removeDateAndTime?: boolean;
|
|
3892
|
+
readonly printPostScriptOverText?: boolean;
|
|
3893
|
+
readonly printFractionalCharacterWidth?: boolean;
|
|
3894
|
+
readonly printFormsData?: boolean;
|
|
3895
|
+
readonly saveFormsData?: boolean;
|
|
3896
|
+
readonly mirrorMargins?: boolean;
|
|
3897
|
+
readonly alignBordersAndEdges?: boolean;
|
|
3898
|
+
readonly bordersDoNotSurroundHeader?: boolean;
|
|
3899
|
+
readonly bordersDoNotSurroundFooter?: boolean;
|
|
3900
|
+
readonly gutterAtTop?: boolean;
|
|
3901
|
+
readonly formsDesign?: boolean;
|
|
3902
|
+
readonly linkStyles?: boolean;
|
|
3903
|
+
readonly autoFormatOverride?: boolean;
|
|
3904
|
+
readonly styleLockTheme?: boolean;
|
|
3905
|
+
readonly styleLockQFSet?: boolean;
|
|
3906
|
+
readonly showEnvelope?: boolean;
|
|
3907
|
+
readonly printTwoOnOne?: boolean;
|
|
3908
|
+
readonly strictFirstAndLastChars?: boolean;
|
|
3909
|
+
readonly savePreviewPicture?: boolean;
|
|
3910
|
+
readonly doNotValidateAgainstSchema?: boolean;
|
|
3911
|
+
readonly saveInvalidXml?: boolean;
|
|
3912
|
+
readonly ignoreMixedContent?: boolean;
|
|
3913
|
+
readonly alwaysShowPlaceholderText?: boolean;
|
|
3914
|
+
readonly doNotDemarcateInvalidXml?: boolean;
|
|
3915
|
+
readonly saveXmlDataOnly?: boolean;
|
|
3916
|
+
readonly useXSLTWhenSaving?: boolean;
|
|
3917
|
+
readonly doNotEmbedSmartTags?: boolean;
|
|
3918
|
+
readonly doNotAutoCompressPictures?: boolean;
|
|
3919
|
+
readonly doNotIncludeSubdocsInStats?: boolean;
|
|
3920
|
+
readonly bookFoldPrinting?: boolean;
|
|
3921
|
+
readonly bookFoldRevPrinting?: boolean;
|
|
3922
|
+
readonly defaultTableStyle?: string;
|
|
3923
|
+
readonly decimalSymbol?: string;
|
|
3924
|
+
readonly listSeparator?: string;
|
|
3925
|
+
readonly clickAndTypeStyle?: string;
|
|
3926
|
+
readonly summaryLength?: number;
|
|
3927
|
+
readonly bookFoldPrintingSheets?: number;
|
|
3928
|
+
readonly drawingGridHorizontalSpacing?: number;
|
|
3929
|
+
readonly drawingGridVerticalSpacing?: number;
|
|
3930
|
+
readonly displayHorizontalDrawingGridEvery?: number;
|
|
3931
|
+
readonly displayVerticalDrawingGridEvery?: number;
|
|
3932
|
+
readonly drawingGridHorizontalOrigin?: number;
|
|
3933
|
+
readonly drawingGridVerticalOrigin?: number;
|
|
3934
|
+
readonly footnotePr?: FootnotePropertiesOptions;
|
|
3935
|
+
readonly endnotePr?: EndnotePropertiesOptions;
|
|
3936
|
+
readonly rsids?: RsidsOptions;
|
|
3937
|
+
readonly readModeInkLockDown?: ReadModeInkLockDownOptions;
|
|
3938
|
+
readonly captions?: CaptionsOptions;
|
|
3939
|
+
readonly mathPr?: MathPropertiesOptions$1;
|
|
3940
|
+
readonly activeWritingStyle?: readonly {
|
|
3941
|
+
readonly lang?: string;
|
|
3942
|
+
readonly vendorID?: string;
|
|
3943
|
+
readonly dllVersion?: string;
|
|
3944
|
+
readonly nlCheck?: boolean;
|
|
3945
|
+
readonly checkStyle?: boolean;
|
|
3946
|
+
readonly appCheck?: string;
|
|
3947
|
+
readonly appName?: string;
|
|
3948
|
+
}[];
|
|
3949
|
+
readonly proofState?: {
|
|
3950
|
+
readonly spelling?: "clean" | "dirty";
|
|
3951
|
+
readonly grammar?: "clean" | "dirty";
|
|
3952
|
+
};
|
|
3953
|
+
readonly stylePaneFormatFilter?: {
|
|
3954
|
+
readonly allStyles?: boolean;
|
|
3955
|
+
readonly customStyles?: boolean;
|
|
3956
|
+
readonly stylesInUse?: boolean;
|
|
3957
|
+
readonly headingStyles?: boolean;
|
|
3958
|
+
readonly numberingStyles?: boolean;
|
|
3959
|
+
readonly tableStyles?: boolean;
|
|
3960
|
+
readonly directFormattingOnRuns?: boolean;
|
|
3961
|
+
readonly directFormattingOnParagraphs?: boolean;
|
|
3962
|
+
readonly directFormattingOnNumbering?: boolean;
|
|
3963
|
+
readonly directFormattingOnTables?: boolean;
|
|
3964
|
+
readonly clearFormatting?: boolean;
|
|
3965
|
+
readonly top3HeadingStyles?: boolean;
|
|
3966
|
+
readonly visibleStyles?: boolean;
|
|
3967
|
+
readonly alternateStyleNames?: boolean;
|
|
3968
|
+
};
|
|
3969
|
+
readonly stylePaneSortMethod?: "name" | "priority" | "default" | "font";
|
|
3970
|
+
readonly documentType?: "letter" | "eMail" | "notSpecified";
|
|
3971
|
+
readonly doNotUseMarginsForDrawingGridOrigin?: boolean;
|
|
3972
|
+
readonly doNotShadeFormData?: boolean;
|
|
3973
|
+
readonly noLineBreaksAfter?: {
|
|
3974
|
+
readonly lang?: string;
|
|
3975
|
+
readonly val?: string;
|
|
3976
|
+
};
|
|
3977
|
+
readonly noLineBreaksBefore?: {
|
|
3978
|
+
readonly lang?: string;
|
|
3979
|
+
readonly val?: string;
|
|
3980
|
+
};
|
|
3981
|
+
readonly saveThroughXslt?: {
|
|
3982
|
+
readonly id?: string;
|
|
3983
|
+
readonly val?: string;
|
|
3984
|
+
readonly solutionID?: string;
|
|
3985
|
+
};
|
|
3986
|
+
readonly showXMLTags?: boolean;
|
|
3987
|
+
readonly alwaysMergeEmptyNamespace?: boolean;
|
|
3988
|
+
readonly hdrShapeDefaults?: boolean;
|
|
3989
|
+
readonly attachedSchema?: readonly string[];
|
|
3990
|
+
readonly forceUpgrade?: boolean;
|
|
3991
|
+
readonly smartTagType?: readonly {
|
|
3992
|
+
readonly namespace?: string;
|
|
3993
|
+
readonly namespaceuri?: string;
|
|
3994
|
+
readonly name?: string;
|
|
3995
|
+
readonly url?: string;
|
|
3996
|
+
}[];
|
|
3997
|
+
readonly shapeDefaults?: boolean;
|
|
3998
|
+
}
|
|
3999
|
+
interface RevisionViewOptions {
|
|
4000
|
+
readonly markup?: boolean;
|
|
4001
|
+
readonly comments?: boolean;
|
|
4002
|
+
readonly insDel?: boolean;
|
|
4003
|
+
readonly formatting?: boolean;
|
|
4004
|
+
readonly inkAnnotations?: boolean;
|
|
3686
4005
|
}
|
|
3687
4006
|
interface DocumentProtectionOptions {
|
|
3688
4007
|
readonly edit?: "none" | "readOnly" | "comments" | "trackedChanges" | "forms";
|
|
3689
4008
|
readonly formatting?: boolean;
|
|
4009
|
+
readonly password?: string;
|
|
3690
4010
|
readonly hashValue?: string;
|
|
3691
4011
|
readonly saltValue?: string;
|
|
4012
|
+
readonly hash?: string;
|
|
4013
|
+
readonly salt?: string;
|
|
3692
4014
|
readonly spinCount?: number;
|
|
3693
4015
|
readonly algorithmName?: string;
|
|
4016
|
+
readonly cryptoAlgorithmClass?: string;
|
|
4017
|
+
readonly cryptoAlgorithmSid?: number;
|
|
4018
|
+
readonly cryptoAlgorithmType?: string;
|
|
4019
|
+
readonly cryptoProvider?: string;
|
|
4020
|
+
readonly cryptoProviderType?: string;
|
|
4021
|
+
readonly cryptoProviderTypeExtension?: number;
|
|
4022
|
+
readonly cryptoProviderTypeExtensionSource?: string;
|
|
4023
|
+
readonly algorithmExtensionId?: number;
|
|
4024
|
+
readonly algorithmExtensionSource?: string;
|
|
4025
|
+
readonly cryptoSpinCount?: number;
|
|
3694
4026
|
}
|
|
3695
4027
|
interface WriteProtectionOptions {
|
|
4028
|
+
readonly password?: string;
|
|
3696
4029
|
readonly hashValue?: string;
|
|
3697
4030
|
readonly saltValue?: string;
|
|
4031
|
+
readonly hash?: string;
|
|
4032
|
+
readonly salt?: string;
|
|
3698
4033
|
readonly spinCount?: number;
|
|
3699
4034
|
readonly algorithmName?: string;
|
|
3700
4035
|
readonly recommended?: boolean;
|
|
4036
|
+
readonly cryptoAlgorithmClass?: string;
|
|
4037
|
+
readonly cryptoAlgorithmSid?: number;
|
|
4038
|
+
readonly cryptoAlgorithmType?: string;
|
|
4039
|
+
readonly cryptoProvider?: string;
|
|
4040
|
+
readonly cryptoProviderType?: string;
|
|
4041
|
+
readonly cryptoProviderTypeExtension?: number;
|
|
4042
|
+
readonly cryptoProviderTypeExtensionSource?: string;
|
|
4043
|
+
readonly algorithmExtensionId?: number;
|
|
4044
|
+
readonly algorithmExtensionSource?: string;
|
|
4045
|
+
readonly cryptoSpinCount?: number;
|
|
4046
|
+
}
|
|
4047
|
+
type MailMergeDocType = "catalog" | "envelopes" | "mailingLabels" | "formLetters" | "email" | "fax";
|
|
4048
|
+
type MailMergeDest = "newDocument" | "printer" | "email" | "fax";
|
|
4049
|
+
type MailMergeDataType = "textFile" | "database" | "spreadsheet" | "email" | "odbc" | "native" | "addressBook" | "legacy" | "master";
|
|
4050
|
+
type MailMergeSourceType = "database" | "addressBook" | "document1" | "document2" | "text" | "email" | "native" | "legacy" | "master";
|
|
4051
|
+
type OdsoFieldType = "null" | "dbColumn";
|
|
4052
|
+
interface OdsoFieldMapDataOptions {
|
|
4053
|
+
readonly type?: OdsoFieldType;
|
|
4054
|
+
readonly name?: string;
|
|
4055
|
+
readonly mappedName?: string;
|
|
4056
|
+
readonly column?: number;
|
|
4057
|
+
readonly lid?: string;
|
|
4058
|
+
readonly dynamicAddress?: boolean;
|
|
4059
|
+
}
|
|
4060
|
+
interface OdsoOptions {
|
|
4061
|
+
readonly udl?: string;
|
|
4062
|
+
readonly table?: string;
|
|
4063
|
+
readonly src?: string;
|
|
4064
|
+
readonly colDelim?: number;
|
|
4065
|
+
readonly type?: MailMergeSourceType;
|
|
4066
|
+
readonly fHdr?: boolean;
|
|
4067
|
+
readonly fieldMapData?: readonly OdsoFieldMapDataOptions[];
|
|
4068
|
+
readonly recipientData?: readonly string[];
|
|
4069
|
+
readonly uniqueTag?: string;
|
|
4070
|
+
}
|
|
4071
|
+
interface MailMergeOptions {
|
|
4072
|
+
readonly mainDocumentType: MailMergeDocType;
|
|
4073
|
+
readonly dataType: MailMergeDataType;
|
|
4074
|
+
readonly destination?: MailMergeDest;
|
|
4075
|
+
readonly connectString?: string;
|
|
4076
|
+
readonly query?: string;
|
|
4077
|
+
readonly dataSource?: string;
|
|
4078
|
+
readonly headerSource?: string;
|
|
4079
|
+
readonly doNotSuppressBlankLines?: boolean;
|
|
4080
|
+
readonly addressFieldName?: string;
|
|
4081
|
+
readonly mailSubject?: string;
|
|
4082
|
+
readonly mailAsAttachment?: boolean;
|
|
4083
|
+
readonly viewMergedData?: boolean;
|
|
4084
|
+
readonly activeRecord?: number;
|
|
4085
|
+
readonly checkErrors?: number;
|
|
4086
|
+
readonly linkToQuery?: boolean;
|
|
4087
|
+
readonly odso?: OdsoOptions;
|
|
4088
|
+
readonly active?: boolean;
|
|
4089
|
+
readonly recipients?: string;
|
|
3701
4090
|
}
|
|
3702
4091
|
interface HyphenationOptions {
|
|
3703
4092
|
readonly autoHyphenation?: boolean;
|
|
@@ -3705,10 +4094,203 @@ interface HyphenationOptions {
|
|
|
3705
4094
|
readonly consecutiveHyphenLimit?: number;
|
|
3706
4095
|
readonly doNotHyphenateCaps?: boolean;
|
|
3707
4096
|
}
|
|
4097
|
+
interface FootnotePropertiesOptions {
|
|
4098
|
+
readonly pos?: (typeof FootnotePositionType)[keyof typeof FootnotePositionType];
|
|
4099
|
+
readonly numFmt?: string;
|
|
4100
|
+
readonly format?: string;
|
|
4101
|
+
readonly numStart?: number;
|
|
4102
|
+
readonly numRestart?: string;
|
|
4103
|
+
}
|
|
4104
|
+
interface EndnotePropertiesOptions {
|
|
4105
|
+
readonly pos?: (typeof EndnotePositionType)[keyof typeof EndnotePositionType];
|
|
4106
|
+
readonly numFmt?: string;
|
|
4107
|
+
readonly format?: string;
|
|
4108
|
+
readonly numStart?: number;
|
|
4109
|
+
readonly numRestart?: string;
|
|
4110
|
+
}
|
|
4111
|
+
interface RsidsOptions {
|
|
4112
|
+
readonly rsidRoot?: string;
|
|
4113
|
+
readonly rsids?: readonly string[];
|
|
4114
|
+
}
|
|
4115
|
+
interface ReadModeInkLockDownOptions {
|
|
4116
|
+
readonly actualPg?: boolean;
|
|
4117
|
+
readonly w: number;
|
|
4118
|
+
readonly h: number;
|
|
4119
|
+
readonly fontSz: number;
|
|
4120
|
+
}
|
|
4121
|
+
interface CaptionOptions {
|
|
4122
|
+
readonly name: string;
|
|
4123
|
+
readonly pos?: "above" | "below";
|
|
4124
|
+
readonly chapNum?: boolean;
|
|
4125
|
+
readonly heading?: number;
|
|
4126
|
+
readonly noLabel?: boolean;
|
|
4127
|
+
readonly numFmt?: string;
|
|
4128
|
+
readonly sep?: "hyphen" | "period" | "colon" | "emDash" | "enDash";
|
|
4129
|
+
}
|
|
4130
|
+
interface AutoCaptionOptions {
|
|
4131
|
+
readonly name: string;
|
|
4132
|
+
readonly caption: string;
|
|
4133
|
+
}
|
|
4134
|
+
interface CaptionsOptions {
|
|
4135
|
+
readonly captions: readonly CaptionOptions[];
|
|
4136
|
+
readonly autoCaptions?: readonly AutoCaptionOptions[];
|
|
4137
|
+
}
|
|
4138
|
+
interface MathPropertiesOptions$1 {
|
|
4139
|
+
readonly mathFont?: string;
|
|
4140
|
+
readonly brkBin?: string;
|
|
4141
|
+
readonly brkBinSub?: string;
|
|
4142
|
+
readonly smallFrac?: boolean;
|
|
4143
|
+
readonly dispDef?: boolean;
|
|
4144
|
+
readonly lMargin?: number;
|
|
4145
|
+
readonly rMargin?: number;
|
|
4146
|
+
readonly defJc?: string;
|
|
4147
|
+
readonly wrapIndent?: number;
|
|
4148
|
+
readonly intLim?: string;
|
|
4149
|
+
readonly naryLim?: string;
|
|
4150
|
+
}
|
|
3708
4151
|
declare class Settings extends XmlComponent {
|
|
3709
4152
|
constructor(options: SettingsOptions);
|
|
3710
4153
|
}
|
|
3711
4154
|
//#endregion
|
|
4155
|
+
//#region src/file/frameset/frameset.d.ts
|
|
4156
|
+
interface FrameOptions {
|
|
4157
|
+
readonly size?: string;
|
|
4158
|
+
readonly name?: string;
|
|
4159
|
+
readonly title?: string;
|
|
4160
|
+
readonly sourceRId?: string;
|
|
4161
|
+
readonly marginWidth?: number;
|
|
4162
|
+
readonly marginHeight?: number;
|
|
4163
|
+
readonly scrollbar?: "on" | "off" | "auto";
|
|
4164
|
+
readonly noResizeAllowed?: boolean;
|
|
4165
|
+
readonly linkedToFile?: boolean;
|
|
4166
|
+
readonly longDescRId?: string;
|
|
4167
|
+
}
|
|
4168
|
+
interface FramesetSplitbarOptions {
|
|
4169
|
+
readonly width?: number;
|
|
4170
|
+
readonly color?: string;
|
|
4171
|
+
readonly noBorder?: boolean;
|
|
4172
|
+
readonly flatBorders?: boolean;
|
|
4173
|
+
}
|
|
4174
|
+
interface FramesetOptions {
|
|
4175
|
+
readonly size?: string;
|
|
4176
|
+
readonly splitbar?: FramesetSplitbarOptions;
|
|
4177
|
+
readonly layout?: "rows" | "cols";
|
|
4178
|
+
readonly title?: string;
|
|
4179
|
+
readonly children?: readonly (FramesetOptions | FrameOptions)[];
|
|
4180
|
+
}
|
|
4181
|
+
declare class Frameset extends XmlComponent {
|
|
4182
|
+
constructor(options: FramesetOptions);
|
|
4183
|
+
}
|
|
4184
|
+
//#endregion
|
|
4185
|
+
//#region src/file/web-settings/web-settings.d.ts
|
|
4186
|
+
interface DivBorderOptions {
|
|
4187
|
+
readonly top?: {
|
|
4188
|
+
readonly style: string;
|
|
4189
|
+
readonly color?: string;
|
|
4190
|
+
readonly size?: number;
|
|
4191
|
+
};
|
|
4192
|
+
readonly left?: {
|
|
4193
|
+
readonly style: string;
|
|
4194
|
+
readonly color?: string;
|
|
4195
|
+
readonly size?: number;
|
|
4196
|
+
};
|
|
4197
|
+
readonly bottom?: {
|
|
4198
|
+
readonly style: string;
|
|
4199
|
+
readonly color?: string;
|
|
4200
|
+
readonly size?: number;
|
|
4201
|
+
};
|
|
4202
|
+
readonly right?: {
|
|
4203
|
+
readonly style: string;
|
|
4204
|
+
readonly color?: string;
|
|
4205
|
+
readonly size?: number;
|
|
4206
|
+
};
|
|
4207
|
+
}
|
|
4208
|
+
interface DivOptions {
|
|
4209
|
+
readonly id: number;
|
|
4210
|
+
readonly marginLeft: number;
|
|
4211
|
+
readonly marginRight: number;
|
|
4212
|
+
readonly marginTop: number;
|
|
4213
|
+
readonly marginBottom: number;
|
|
4214
|
+
readonly blockQuote?: boolean;
|
|
4215
|
+
readonly bodyDiv?: boolean;
|
|
4216
|
+
readonly border?: DivBorderOptions;
|
|
4217
|
+
readonly children?: readonly DivOptions[];
|
|
4218
|
+
}
|
|
4219
|
+
declare const TargetScreenSize: {
|
|
4220
|
+
readonly SIZE_544X376: "544x376";
|
|
4221
|
+
readonly SIZE_640X480: "640x480";
|
|
4222
|
+
readonly SIZE_720X512: "720x512";
|
|
4223
|
+
readonly SIZE_800X600: "800x600";
|
|
4224
|
+
readonly SIZE_1024X768: "1024x768";
|
|
4225
|
+
readonly SIZE_1152X882: "1152x882";
|
|
4226
|
+
readonly SIZE_1152X900: "1152x900";
|
|
4227
|
+
readonly SIZE_1280X1024: "1280x1024";
|
|
4228
|
+
readonly SIZE_1600X1200: "1600x1200";
|
|
4229
|
+
readonly SIZE_1800X1440: "1800x1440";
|
|
4230
|
+
readonly SIZE_1920X1200: "1920x1200";
|
|
4231
|
+
};
|
|
4232
|
+
interface WebSettingsOptions {
|
|
4233
|
+
readonly frameset?: FramesetOptions;
|
|
4234
|
+
readonly divs?: readonly DivOptions[];
|
|
4235
|
+
readonly encoding?: string;
|
|
4236
|
+
readonly optimizeForBrowser?: boolean;
|
|
4237
|
+
readonly relyOnVML?: boolean;
|
|
4238
|
+
readonly allowPNG?: boolean;
|
|
4239
|
+
readonly doNotRelyOnCSS?: boolean;
|
|
4240
|
+
readonly doNotSaveAsSingleFile?: boolean;
|
|
4241
|
+
readonly doNotOrganizeInFolder?: boolean;
|
|
4242
|
+
readonly doNotUseLongFileNames?: boolean;
|
|
4243
|
+
readonly pixelsPerInch?: number;
|
|
4244
|
+
readonly targetScreenSz?: (typeof TargetScreenSize)[keyof typeof TargetScreenSize] | string;
|
|
4245
|
+
readonly saveSmartTagsAsXml?: boolean;
|
|
4246
|
+
}
|
|
4247
|
+
declare class WebSettings extends XmlComponent {
|
|
4248
|
+
constructor(options?: WebSettingsOptions);
|
|
4249
|
+
}
|
|
4250
|
+
//#endregion
|
|
4251
|
+
//#region src/file/fonts/font.d.ts
|
|
4252
|
+
declare const CharacterSet: {
|
|
4253
|
+
readonly ANSI: "00";
|
|
4254
|
+
readonly ARABIC: "B2";
|
|
4255
|
+
readonly BALTIC: "BA";
|
|
4256
|
+
readonly CHINESEBIG5: "88";
|
|
4257
|
+
readonly DEFAULT: "01";
|
|
4258
|
+
readonly EASTEUROPE: "EE";
|
|
4259
|
+
readonly GB_2312: "86";
|
|
4260
|
+
readonly GREEK: "A1";
|
|
4261
|
+
readonly HANGUL: "81";
|
|
4262
|
+
readonly HEBREW: "B1";
|
|
4263
|
+
readonly JIS: "80";
|
|
4264
|
+
readonly JOHAB: "82";
|
|
4265
|
+
readonly MAC: "4D";
|
|
4266
|
+
readonly OEM: "FF";
|
|
4267
|
+
readonly RUSSIAN: "CC";
|
|
4268
|
+
readonly SYMBOL: "02";
|
|
4269
|
+
readonly THAI: "DE";
|
|
4270
|
+
readonly TURKISH: "A2";
|
|
4271
|
+
readonly VIETNAMESE: "A3";
|
|
4272
|
+
};
|
|
4273
|
+
//#endregion
|
|
4274
|
+
//#region src/file/fonts/font-wrapper.d.ts
|
|
4275
|
+
type EmbeddedFontOptionsWithKey = EmbeddedFontOptions & {
|
|
4276
|
+
readonly fontKey: string;
|
|
4277
|
+
};
|
|
4278
|
+
declare class FontWrapper implements ViewWrapper {
|
|
4279
|
+
readonly options: readonly EmbeddedFontOptions[];
|
|
4280
|
+
private readonly fontTable;
|
|
4281
|
+
readonly relationships: Relationships;
|
|
4282
|
+
readonly fontOptionsWithKey: readonly EmbeddedFontOptionsWithKey[];
|
|
4283
|
+
constructor(options: readonly EmbeddedFontOptions[]);
|
|
4284
|
+
get view(): XmlComponent;
|
|
4285
|
+
}
|
|
4286
|
+
//#endregion
|
|
4287
|
+
//#region src/file/fonts/font-table.d.ts
|
|
4288
|
+
interface EmbeddedFontOptions {
|
|
4289
|
+
readonly name: string;
|
|
4290
|
+
readonly data: Buffer;
|
|
4291
|
+
readonly characterSet?: (typeof CharacterSet)[keyof typeof CharacterSet];
|
|
4292
|
+
}
|
|
4293
|
+
//#endregion
|
|
3712
4294
|
//#region src/file/custom-properties/custom-property.d.ts
|
|
3713
4295
|
interface CustomPropertyOptions {
|
|
3714
4296
|
readonly name: string;
|
|
@@ -3802,6 +4384,14 @@ interface LevelsOptions {
|
|
|
3802
4384
|
readonly start?: number;
|
|
3803
4385
|
readonly suffix?: (typeof LevelSuffix)[keyof typeof LevelSuffix];
|
|
3804
4386
|
readonly isLegalNumberingStyle?: boolean;
|
|
4387
|
+
readonly lvlRestart?: number;
|
|
4388
|
+
readonly lvlPicBulletId?: number;
|
|
4389
|
+
readonly templateCode?: string;
|
|
4390
|
+
readonly tentative?: boolean;
|
|
4391
|
+
readonly legacy?: {
|
|
4392
|
+
readonly space?: number;
|
|
4393
|
+
readonly indent?: number;
|
|
4394
|
+
};
|
|
3805
4395
|
readonly style?: {
|
|
3806
4396
|
readonly run?: RunStylePropertiesOptions;
|
|
3807
4397
|
readonly paragraph?: LevelParagraphStylePropertiesOptions;
|
|
@@ -3818,7 +4408,12 @@ declare class LevelBase extends XmlComponent {
|
|
|
3818
4408
|
start,
|
|
3819
4409
|
style,
|
|
3820
4410
|
suffix,
|
|
3821
|
-
isLegalNumberingStyle
|
|
4411
|
+
isLegalNumberingStyle,
|
|
4412
|
+
lvlRestart,
|
|
4413
|
+
lvlPicBulletId,
|
|
4414
|
+
legacy,
|
|
4415
|
+
templateCode,
|
|
4416
|
+
tentative
|
|
3822
4417
|
}: LevelsOptions);
|
|
3823
4418
|
}
|
|
3824
4419
|
declare class Level extends LevelBase {}
|
|
@@ -3852,6 +4447,11 @@ interface NumberingOptions {
|
|
|
3852
4447
|
readonly levels: readonly LevelsOptions[];
|
|
3853
4448
|
readonly reference: string;
|
|
3854
4449
|
}[];
|
|
4450
|
+
readonly numIdMacAtCleanup?: number;
|
|
4451
|
+
readonly numPicBullets?: readonly {
|
|
4452
|
+
readonly numPicBulletId: number;
|
|
4453
|
+
readonly pict?: string;
|
|
4454
|
+
}[];
|
|
3855
4455
|
}
|
|
3856
4456
|
declare class Numbering extends XmlComponent {
|
|
3857
4457
|
private readonly abstractNumberingMap;
|
|
@@ -3859,6 +4459,8 @@ declare class Numbering extends XmlComponent {
|
|
|
3859
4459
|
private readonly referenceConfigMap;
|
|
3860
4460
|
private readonly abstractNumUniqueNumericId;
|
|
3861
4461
|
private readonly concreteNumUniqueNumericId;
|
|
4462
|
+
private readonly _numIdMacAtCleanup?;
|
|
4463
|
+
private readonly _numPicBullets?;
|
|
3862
4464
|
constructor(options: NumberingOptions);
|
|
3863
4465
|
toXml(context: Context): string;
|
|
3864
4466
|
createConcreteNumberingInstance(reference: string, instance: number): void;
|
|
@@ -3867,9 +4469,16 @@ declare class Numbering extends XmlComponent {
|
|
|
3867
4469
|
}
|
|
3868
4470
|
//#endregion
|
|
3869
4471
|
//#region src/file/numbering/abstract-numbering.d.ts
|
|
4472
|
+
interface AbstractNumberingOptions {
|
|
4473
|
+
readonly nsid?: string;
|
|
4474
|
+
readonly tmpl?: string;
|
|
4475
|
+
readonly name?: string;
|
|
4476
|
+
readonly styleLink?: string;
|
|
4477
|
+
readonly numStyleLink?: string;
|
|
4478
|
+
}
|
|
3870
4479
|
declare class AbstractNumbering extends XmlComponent {
|
|
3871
4480
|
readonly id: number;
|
|
3872
|
-
constructor(id: number, levelOptions: readonly LevelsOptions[]);
|
|
4481
|
+
constructor(id: number, levelOptions: readonly LevelsOptions[], extraOptions?: AbstractNumberingOptions);
|
|
3873
4482
|
}
|
|
3874
4483
|
//#endregion
|
|
3875
4484
|
//#region src/file/styles/defaults/paragraph-properties.d.ts
|
|
@@ -3934,6 +4543,12 @@ interface StyleOptions {
|
|
|
3934
4543
|
readonly semiHidden?: boolean;
|
|
3935
4544
|
readonly unhideWhenUsed?: boolean;
|
|
3936
4545
|
readonly quickFormat?: boolean;
|
|
4546
|
+
readonly aliases?: string;
|
|
4547
|
+
readonly autoRedefine?: boolean;
|
|
4548
|
+
readonly locked?: boolean;
|
|
4549
|
+
readonly personal?: boolean;
|
|
4550
|
+
readonly personalCompose?: boolean;
|
|
4551
|
+
readonly personalReply?: boolean;
|
|
3937
4552
|
readonly tableStyleOverrides?: readonly TableStyleOverrideOptions[];
|
|
3938
4553
|
}
|
|
3939
4554
|
declare class Style extends XmlComponent {
|
|
@@ -4049,6 +4664,10 @@ interface PropertiesOptions {
|
|
|
4049
4664
|
readonly val: string;
|
|
4050
4665
|
}[];
|
|
4051
4666
|
readonly colorSchemeMapping?: SettingsOptions["colorSchemeMapping"];
|
|
4667
|
+
readonly mailMerge?: SettingsOptions["mailMerge"];
|
|
4668
|
+
readonly glossary?: GlossaryDocumentOptions;
|
|
4669
|
+
readonly settings?: SettingsOptions;
|
|
4670
|
+
readonly webSettings?: WebSettingsOptions;
|
|
4052
4671
|
}
|
|
4053
4672
|
declare class CoreProperties extends XmlComponent {
|
|
4054
4673
|
constructor(options: Omit<PropertiesOptions, "sections">);
|
|
@@ -4121,6 +4740,8 @@ declare class File {
|
|
|
4121
4740
|
readonly comments: Comments;
|
|
4122
4741
|
readonly bibliography: Bibliography | undefined;
|
|
4123
4742
|
readonly fontTable: FontWrapper;
|
|
4743
|
+
readonly glossaryOptions: GlossaryDocumentOptions | undefined;
|
|
4744
|
+
readonly webSettings: WebSettings | undefined;
|
|
4124
4745
|
constructor(options: PropertiesOptions);
|
|
4125
4746
|
private addSection;
|
|
4126
4747
|
private createHeader;
|
|
@@ -4163,9 +4784,19 @@ declare const AlignmentType: {
|
|
|
4163
4784
|
declare const createAlignment: (type: (typeof AlignmentType)[keyof typeof AlignmentType]) => XmlComponent;
|
|
4164
4785
|
//#endregion
|
|
4165
4786
|
//#region src/file/paragraph/formatting/unordered-list.d.ts
|
|
4166
|
-
declare function buildNumberProperties(numberId: number | string, indentLevel: number
|
|
4787
|
+
declare function buildNumberProperties(numberId: number | string, indentLevel: number, numberingChange?: {
|
|
4788
|
+
readonly original: string;
|
|
4789
|
+
readonly id: string;
|
|
4790
|
+
readonly author: string;
|
|
4791
|
+
readonly date?: string;
|
|
4792
|
+
}): IXmlableObject;
|
|
4167
4793
|
declare class NumberProperties extends XmlComponent {
|
|
4168
|
-
constructor(numberId: number | string, indentLevel: number
|
|
4794
|
+
constructor(numberId: number | string, indentLevel: number, numberingChange?: {
|
|
4795
|
+
readonly original: string;
|
|
4796
|
+
readonly id: string;
|
|
4797
|
+
readonly author: string;
|
|
4798
|
+
readonly date?: string;
|
|
4799
|
+
});
|
|
4169
4800
|
}
|
|
4170
4801
|
//#endregion
|
|
4171
4802
|
//#region src/file/coerce.d.ts
|
|
@@ -4193,8 +4824,39 @@ declare class Textbox extends XmlComponent implements FileChild {
|
|
|
4193
4824
|
declare namespace index_d_exports$3 {
|
|
4194
4825
|
export { COLOR_CATEGORIES, DEFAULT_DRAWING_XML, LAYOUT_CATEGORIES, STYLE_CATEGORIES, SmartArtCollection, SmartArtData, TreeNode, createDataModel, getColorXml, getLayoutXml, getStyleXml };
|
|
4195
4826
|
}
|
|
4827
|
+
//#endregion
|
|
4828
|
+
//#region src/file/object/object-element.d.ts
|
|
4829
|
+
interface ObjectEmbedOptions {
|
|
4830
|
+
readonly rId: string;
|
|
4831
|
+
readonly progId?: string;
|
|
4832
|
+
readonly drawAspect?: string;
|
|
4833
|
+
readonly shapeId?: string;
|
|
4834
|
+
readonly fieldCodes?: string;
|
|
4835
|
+
}
|
|
4836
|
+
interface ObjectLinkOptions extends ObjectEmbedOptions {
|
|
4837
|
+
readonly updateMode: string;
|
|
4838
|
+
readonly lockedField?: boolean;
|
|
4839
|
+
}
|
|
4840
|
+
interface ObjectElementOptions {
|
|
4841
|
+
readonly style?: VmlShapeStyle;
|
|
4842
|
+
readonly shapeId?: string;
|
|
4843
|
+
readonly dxaOrig?: number;
|
|
4844
|
+
readonly dyaOrig?: number;
|
|
4845
|
+
readonly embed?: ObjectEmbedOptions;
|
|
4846
|
+
readonly link?: ObjectLinkOptions;
|
|
4847
|
+
readonly control?: {
|
|
4848
|
+
readonly name?: string;
|
|
4849
|
+
readonly shapeid?: string;
|
|
4850
|
+
readonly rId?: string;
|
|
4851
|
+
};
|
|
4852
|
+
readonly movie?: string;
|
|
4853
|
+
}
|
|
4854
|
+
declare class ObjectElement extends XmlComponent implements FileChild {
|
|
4855
|
+
readonly fileChild: symbol;
|
|
4856
|
+
constructor(options: ObjectElementOptions);
|
|
4857
|
+
}
|
|
4196
4858
|
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 };
|
|
4859
|
+
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
4860
|
}
|
|
4199
4861
|
//#endregion
|
|
4200
4862
|
//#region src/export/packer/packer.d.ts
|
|
@@ -4284,8 +4946,8 @@ interface DocxDocument {
|
|
|
4284
4946
|
declare function parseDocument(data: DataType): PropertiesOptions;
|
|
4285
4947
|
declare function parseDocx(data: DataType): DocxDocument;
|
|
4286
4948
|
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 };
|
|
4949
|
+
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
4950
|
}
|
|
4289
4951
|
//#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 };
|
|
4952
|
+
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
4953
|
//# sourceMappingURL=index.d.mts.map
|