@office-open/docx 0.10.1 → 0.10.3

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.
@@ -1,6 +1,6 @@
1
- import { AppPropertiesInput, AppPropertiesOptions, CorePropertiesOptions, CustomPropertiesInput, CustomPropertyOptions, DataType, ParsedArchive, Percentage, PositiveUniversalMeasure, Relationships, RelativeMeasure, ThemeColor, ThemeFont, UniversalMeasure, appPropertiesDesc, customPropertiesDesc, parseArchive } from "@office-open/core";
1
+ import { AppPropertiesInput, AppPropertiesOptions, CorePropertiesOptions, CustomPropertiesInput, CustomPropertyOptions, DataType, Media, ParsedArchive, Percentage, PositiveUniversalMeasure, Relationships, RelativeMeasure, ThemeColor, ThemeFont, UniversalMeasure, appPropertiesDesc, customPropertiesDesc, parseArchive } from "@office-open/core";
2
+ import { BlipEffectsOptions, CustomGeometryOptions, EffectDagOptions, EffectListOptions, FillOptions, OutlineOptions, PresetGeometryOptions, Scene3DOptions, Shape3DOptions, SolidFillOptions, SourceRectangleOptions, TileOptions } from "@office-open/core/drawingml";
2
3
  import { Element } from "@office-open/xml";
3
- import { BlipEffectsOptions, CustomGeometryOptions, EffectDagOptions, EffectListOptions, FillOptions, OutlineOptions, Scene3DOptions, Shape3DOptions, SolidFillOptions, SourceRectangleOptions, TileOptions } from "@office-open/core/drawingml";
4
4
  import { ChartCollection, ChartSpaceOptions } from "@office-open/core/chart";
5
5
  import { SmartArtCollection } from "@office-open/core/smartart";
6
6
  import { CustomDescriptor, ReadContext, WriteContext } from "@office-open/core/descriptor";
@@ -661,6 +661,159 @@ declare const TabStopPosition: {
661
661
  readonly MAX: 9026;
662
662
  };
663
663
  //#endregion
664
+ //#region src/parts/object/object-element.d.ts
665
+ interface ObjectEmbedOptions {
666
+ data: Uint8Array | string;
667
+ progId?: string;
668
+ drawAspect?: "content" | "icon";
669
+ shapeId?: string;
670
+ fieldCodes?: string;
671
+ }
672
+ interface ObjectLinkOptions extends ObjectEmbedOptions {
673
+ updateMode: "always" | "onCall";
674
+ lockedField?: boolean;
675
+ }
676
+ interface ObjectControlOptions {
677
+ name?: string;
678
+ shapeid?: string;
679
+ rId: string;
680
+ }
681
+ interface ObjectIconImageOptions {
682
+ data: Uint8Array | string;
683
+ type: string;
684
+ title?: string;
685
+ }
686
+ interface ObjectElementOptions {
687
+ dxaOrig?: number;
688
+ dyaOrig?: number;
689
+ shapeId?: string;
690
+ width?: number | UniversalMeasure;
691
+ height?: number | UniversalMeasure;
692
+ iconImage?: ObjectIconImageOptions;
693
+ embed?: ObjectEmbedOptions;
694
+ link?: ObjectLinkOptions;
695
+ control?: ObjectControlOptions;
696
+ movie?: string;
697
+ }
698
+ declare const objectDesc: CustomDescriptor<ObjectElementOptions, BodyContext>;
699
+ //#endregion
700
+ //#region src/parts/paragraph/run/empty-children.d.ts
701
+ interface NoBreakHyphen {
702
+ noBreakHyphen: true;
703
+ }
704
+ interface SoftHyphen {
705
+ softHyphen: true;
706
+ }
707
+ interface DayShort {
708
+ dayShort: true;
709
+ }
710
+ interface MonthShort {
711
+ monthShort: true;
712
+ }
713
+ interface YearShort {
714
+ yearShort: true;
715
+ }
716
+ interface DayLong {
717
+ dayLong: true;
718
+ }
719
+ interface MonthLong {
720
+ monthLong: true;
721
+ }
722
+ interface YearLong {
723
+ yearLong: true;
724
+ }
725
+ interface AnnotationReference {
726
+ annotationRef: true;
727
+ }
728
+ interface FootnoteReferenceElement {
729
+ footnoteRef: true;
730
+ }
731
+ interface EndnoteReference {
732
+ endnoteRef: true;
733
+ }
734
+ interface Separator {
735
+ separator: true;
736
+ }
737
+ interface ContinuationSeparator {
738
+ continuationSeparator: true;
739
+ }
740
+ interface PageNumberElement {
741
+ pgNum: true;
742
+ }
743
+ interface CarriageReturn {
744
+ carriageReturn: true;
745
+ }
746
+ interface Tab {
747
+ tab: true;
748
+ }
749
+ interface LastRenderedPageBreak {
750
+ lastRenderedPageBreak: true;
751
+ }
752
+ //#endregion
753
+ //#region src/parts/paragraph/run/run.d.ts
754
+ type BreakClear = "none" | "left" | "right" | "all";
755
+ interface BreakOptions {
756
+ count?: number;
757
+ clear?: BreakClear;
758
+ }
759
+ declare function breakXml(breakOpt: number | BreakOptions | undefined): string;
760
+ interface RunOptionsBase {
761
+ children?: ((typeof PageNumber)[keyof typeof PageNumber] | string | AnnotationReference | CarriageReturn | ContinuationSeparator | DayLong | DayShort | EndnoteReference | FootnoteReferenceElement | LastRenderedPageBreak | MonthLong | MonthShort | NoBreakHyphen | PageNumberElement | Separator | SoftHyphen | Tab | YearLong | YearShort | {
762
+ object: ObjectElementOptions;
763
+ } | Record<string, unknown>)[];
764
+ break?: number | BreakOptions;
765
+ text?: string;
766
+ }
767
+ type RunOptions = RunOptionsBase & RunPropertiesOptions & {
768
+ rsid?: string;
769
+ runPropertiesRsid?: string;
770
+ deletionRsid?: string;
771
+ };
772
+ type ParagraphRunOptions = RunOptionsBase & ParagraphRunPropertiesOptions;
773
+ declare const PageNumber: {
774
+ readonly CURRENT: "CURRENT";
775
+ readonly TOTAL_PAGES: "TOTAL_PAGES";
776
+ readonly TOTAL_PAGES_IN_SECTION: "TOTAL_PAGES_IN_SECTION";
777
+ readonly CURRENT_SECTION: "SECTION";
778
+ };
779
+ //#endregion
780
+ //#region src/parts/paragraph/links/bookmark.d.ts
781
+ type DisplacedByCustomXml = "before" | "after";
782
+ interface MarkupRangeOptions {
783
+ id: number;
784
+ displacedByCustomXml?: DisplacedByCustomXml;
785
+ }
786
+ interface BookmarkStartOptions extends MarkupRangeOptions {
787
+ name: string;
788
+ colFirst?: number;
789
+ colLast?: number;
790
+ }
791
+ interface MoveRangeStartOptions {
792
+ id: number;
793
+ name?: string;
794
+ author?: string;
795
+ date?: string;
796
+ displacedByCustomXml?: DisplacedByCustomXml;
797
+ colFirst?: number;
798
+ colLast?: number;
799
+ }
800
+ interface BookmarkChildOptions {
801
+ name: string;
802
+ wrap?: (string | RunOptions)[];
803
+ displacedByCustomXml?: DisplacedByCustomXml;
804
+ colFirst?: number;
805
+ colLast?: number;
806
+ }
807
+ interface MoveRangeChildOptions {
808
+ author: string;
809
+ date: string;
810
+ wrap?: (string | RunOptions)[];
811
+ name: string;
812
+ displacedByCustomXml?: DisplacedByCustomXml;
813
+ colFirst?: number;
814
+ colLast?: number;
815
+ }
816
+ //#endregion
664
817
  //#region src/parts/paragraph/math.d.ts
665
818
  type MathScriptType = "roman" | "script" | "fraktur" | "double-struck" | "sans-serif" | "monospace";
666
819
  type MathStyleType = "p" | "b" | "i" | "bi";
@@ -1217,122 +1370,6 @@ type AlignmentFrameOptions = {
1217
1370
  } & BaseFrameOptions;
1218
1371
  type FrameOptions$1 = XYFrameOptions | AlignmentFrameOptions;
1219
1372
  //#endregion
1220
- //#region src/parts/object/object-element.d.ts
1221
- interface ObjectEmbedOptions {
1222
- data: Uint8Array | string;
1223
- progId?: string;
1224
- drawAspect?: "content" | "icon";
1225
- shapeId?: string;
1226
- fieldCodes?: string;
1227
- }
1228
- interface ObjectLinkOptions extends ObjectEmbedOptions {
1229
- updateMode: "always" | "onCall";
1230
- lockedField?: boolean;
1231
- }
1232
- interface ObjectControlOptions {
1233
- name?: string;
1234
- shapeid?: string;
1235
- rId: string;
1236
- }
1237
- interface ObjectIconImageOptions {
1238
- data: Uint8Array | string;
1239
- type: string;
1240
- title?: string;
1241
- }
1242
- interface ObjectElementOptions {
1243
- dxaOrig?: number;
1244
- dyaOrig?: number;
1245
- shapeId?: string;
1246
- width?: number | UniversalMeasure;
1247
- height?: number | UniversalMeasure;
1248
- iconImage?: ObjectIconImageOptions;
1249
- embed?: ObjectEmbedOptions;
1250
- link?: ObjectLinkOptions;
1251
- control?: ObjectControlOptions;
1252
- movie?: string;
1253
- }
1254
- declare const objectDesc: CustomDescriptor<ObjectElementOptions, BodyContext>;
1255
- //#endregion
1256
- //#region src/parts/paragraph/run/empty-children.d.ts
1257
- interface NoBreakHyphen {
1258
- noBreakHyphen: true;
1259
- }
1260
- interface SoftHyphen {
1261
- softHyphen: true;
1262
- }
1263
- interface DayShort {
1264
- dayShort: true;
1265
- }
1266
- interface MonthShort {
1267
- monthShort: true;
1268
- }
1269
- interface YearShort {
1270
- yearShort: true;
1271
- }
1272
- interface DayLong {
1273
- dayLong: true;
1274
- }
1275
- interface MonthLong {
1276
- monthLong: true;
1277
- }
1278
- interface YearLong {
1279
- yearLong: true;
1280
- }
1281
- interface AnnotationReference {
1282
- annotationRef: true;
1283
- }
1284
- interface FootnoteReferenceElement {
1285
- footnoteRef: true;
1286
- }
1287
- interface EndnoteReference {
1288
- endnoteRef: true;
1289
- }
1290
- interface Separator {
1291
- separator: true;
1292
- }
1293
- interface ContinuationSeparator {
1294
- continuationSeparator: true;
1295
- }
1296
- interface PageNumberElement {
1297
- pgNum: true;
1298
- }
1299
- interface CarriageReturn {
1300
- carriageReturn: true;
1301
- }
1302
- interface Tab {
1303
- tab: true;
1304
- }
1305
- interface LastRenderedPageBreak {
1306
- lastRenderedPageBreak: true;
1307
- }
1308
- //#endregion
1309
- //#region src/parts/paragraph/run/run.d.ts
1310
- type BreakClear = "none" | "left" | "right" | "all";
1311
- interface BreakOptions {
1312
- count?: number;
1313
- clear?: BreakClear;
1314
- }
1315
- declare function breakXml(breakOpt: number | BreakOptions | undefined): string;
1316
- interface RunOptionsBase {
1317
- children?: ((typeof PageNumber)[keyof typeof PageNumber] | string | AnnotationReference | CarriageReturn | ContinuationSeparator | DayLong | DayShort | EndnoteReference | FootnoteReferenceElement | LastRenderedPageBreak | MonthLong | MonthShort | NoBreakHyphen | PageNumberElement | Separator | SoftHyphen | Tab | YearLong | YearShort | {
1318
- object: ObjectElementOptions;
1319
- } | Record<string, unknown>)[];
1320
- break?: number | BreakOptions;
1321
- text?: string;
1322
- }
1323
- type RunOptions = RunOptionsBase & RunPropertiesOptions & {
1324
- rsid?: string;
1325
- runPropertiesRsid?: string;
1326
- deletionRsid?: string;
1327
- };
1328
- type ParagraphRunOptions = RunOptionsBase & ParagraphRunPropertiesOptions;
1329
- declare const PageNumber: {
1330
- readonly CURRENT: "CURRENT";
1331
- readonly TOTAL_PAGES: "TOTAL_PAGES";
1332
- readonly TOTAL_PAGES_IN_SECTION: "TOTAL_PAGES_IN_SECTION";
1333
- readonly CURRENT_SECTION: "SECTION";
1334
- };
1335
- //#endregion
1336
1373
  //#region src/parts/paragraph/properties.d.ts
1337
1374
  declare const TextAlignmentType: {
1338
1375
  readonly TOP: "top";
@@ -1676,7 +1713,7 @@ interface BodyPropertiesOptions {
1676
1713
  flatTx?: FlatTextOptions;
1677
1714
  }
1678
1715
  declare const createBodyProperties: (options?: BodyPropertiesOptions) => string;
1679
- declare const parseBodyProperties: (el: Element) => BodyPropertiesOptions;
1716
+ declare const parseBodyProperties: (el: Element, ctx: ReadContext) => BodyPropertiesOptions;
1680
1717
  //#endregion
1681
1718
  //#region src/parts/drawing/inline/graphic/graphic-data/wps/non-visual-shape-properties.d.ts
1682
1719
  interface NonVisualShapePropertiesOptions {
@@ -1706,6 +1743,7 @@ interface WpsShapeCoreOptions {
1706
1743
  outline?: OutlineOptions;
1707
1744
  fill?: FillOptions;
1708
1745
  customGeometry?: CustomGeometryOptions;
1746
+ presetGeometry?: PresetGeometryOptions;
1709
1747
  effectDag?: EffectDagOptions;
1710
1748
  effects?: EffectListOptions;
1711
1749
  scene3d?: Scene3DOptions;
@@ -1801,7 +1839,6 @@ interface SmartArtMediaData {
1801
1839
  }
1802
1840
  type ExtendedMediaData = MediaData | WpsMediaData | WpgMediaData | ChartMediaData | SmartArtMediaData;
1803
1841
  type MediaData = (RegularMediaData | SvgMediaData) & CoreMediaData;
1804
- declare const WORKAROUND2 = "";
1805
1842
  //#endregion
1806
1843
  //#region src/shared/media/media.d.ts
1807
1844
  interface MediaTransformation {
@@ -1824,15 +1861,6 @@ interface MediaTransformation {
1824
1861
  };
1825
1862
  }
1826
1863
  declare const createTransformation: (options: MediaTransformation) => MediaDataTransformation;
1827
- declare class Media {
1828
- private map;
1829
- private nextMediaCounter;
1830
- constructor();
1831
- nextMediaName(type: string): string;
1832
- addImage(key: string, mediaData: MediaData): void;
1833
- findByContent(data: Uint8Array): string | undefined;
1834
- get array(): MediaData[];
1835
- }
1836
1864
  //#endregion
1837
1865
  //#region src/parts/paragraph/run/image-run.d.ts
1838
1866
  interface CoreImageOptions {
@@ -1957,6 +1985,13 @@ interface CommentOptions {
1957
1985
  interface CommentsOptions {
1958
1986
  children: CommentOptions[];
1959
1987
  }
1988
+ interface CommentChildOptions {
1989
+ author?: string;
1990
+ initials?: string;
1991
+ date?: Date | string;
1992
+ children: (string | ParagraphOptions)[];
1993
+ wrap?: (string | RunOptions)[];
1994
+ }
1960
1995
  //#endregion
1961
1996
  //#region src/parts/paragraph/run/positional-tab.d.ts
1962
1997
  declare const PositionalTabAlignment: {
@@ -2106,11 +2141,13 @@ type ParagraphChild = ChartChild | SmartArtChild | ImageChild | MathChild | {
2106
2141
  } | {
2107
2142
  columnBreak: true;
2108
2143
  } | {
2109
- commentRangeStart: number;
2144
+ commentRangeStart: MarkupRangeOptions;
2110
2145
  } | {
2111
- commentRangeEnd: number;
2146
+ commentRangeEnd: MarkupRangeOptions;
2112
2147
  } | {
2113
2148
  commentReference: number;
2149
+ } | {
2150
+ comment: CommentChildOptions;
2114
2151
  } | {
2115
2152
  insertion: ChangedAttributesProperties & {
2116
2153
  children: (RunOptions | string)[];
@@ -2129,17 +2166,13 @@ type ParagraphChild = ChartChild | SmartArtChild | ImageChild | MathChild | {
2129
2166
  history?: boolean;
2130
2167
  children?: (RunOptions | string)[];
2131
2168
  };
2169
+ text?: string;
2132
2170
  } | {
2133
- bookmarkStart: {
2134
- id: number;
2135
- name: string;
2136
- displacedByCustomXml?: "before" | "after";
2137
- };
2171
+ bookmarkStart: BookmarkStartOptions;
2138
2172
  } | {
2139
- bookmarkEnd: {
2140
- id: number;
2141
- displacedByCustomXml?: "before" | "after";
2142
- };
2173
+ bookmarkEnd: MarkupRangeOptions;
2174
+ } | {
2175
+ bookmark: BookmarkChildOptions;
2143
2176
  } | {
2144
2177
  wpsShape: WpsShapeRunOptions;
2145
2178
  } | {
@@ -2163,23 +2196,13 @@ type ParagraphChild = ChartChild | SmartArtChild | ImageChild | MathChild | {
2163
2196
  } | {
2164
2197
  permEnd: number | string;
2165
2198
  } | {
2166
- moveFromRangeStart: {
2167
- id: number;
2168
- name?: string;
2169
- author?: string;
2170
- date?: string;
2171
- };
2199
+ moveFromRangeStart: MoveRangeStartOptions;
2172
2200
  } | {
2173
- moveFromRangeEnd: number;
2201
+ moveFromRangeEnd: MarkupRangeOptions;
2174
2202
  } | {
2175
- moveToRangeStart: {
2176
- id: number;
2177
- name?: string;
2178
- author?: string;
2179
- date?: string;
2180
- };
2203
+ moveToRangeStart: MoveRangeStartOptions;
2181
2204
  } | {
2182
- moveToRangeEnd: number;
2205
+ moveToRangeEnd: MarkupRangeOptions;
2183
2206
  } | {
2184
2207
  movedFrom: ChangedAttributesProperties & {
2185
2208
  children: (RunOptions | string)[];
@@ -2188,6 +2211,10 @@ type ParagraphChild = ChartChild | SmartArtChild | ImageChild | MathChild | {
2188
2211
  movedTo: ChangedAttributesProperties & {
2189
2212
  children: (RunOptions | string)[];
2190
2213
  };
2214
+ } | {
2215
+ moveFrom: MoveRangeChildOptions;
2216
+ } | {
2217
+ moveTo: MoveRangeChildOptions;
2191
2218
  } | {
2192
2219
  customXmlInsRangeStart: {
2193
2220
  id: number;
@@ -2281,6 +2308,38 @@ type ParagraphOptions = {
2281
2308
  textId?: string;
2282
2309
  } & ParagraphPropertiesOptions;
2283
2310
  //#endregion
2311
+ //#region src/parts/paragraph/links/hyperlink.d.ts
2312
+ declare const HyperlinkType: {
2313
+ readonly INTERNAL: "INTERNAL";
2314
+ readonly EXTERNAL: "EXTERNAL";
2315
+ };
2316
+ interface InternalHyperlinkOptions {
2317
+ anchor: string;
2318
+ tooltip?: string;
2319
+ }
2320
+ interface ExternalHyperlinkOptions {
2321
+ link: string;
2322
+ tooltip?: string;
2323
+ tgtFrame?: string;
2324
+ }
2325
+ //#endregion
2326
+ //#region src/parts/paragraph/links/numbered-item-ref.d.ts
2327
+ declare enum NumberedItemReferenceFormat {
2328
+ NONE = "none",
2329
+ RELATIVE = "relative",
2330
+ NO_CONTEXT = "no_context",
2331
+ FULL_CONTEXT = "full_context"
2332
+ }
2333
+ interface NumberedItemReferenceOptions {
2334
+ hyperlink?: boolean;
2335
+ referenceFormat?: NumberedItemReferenceFormat;
2336
+ }
2337
+ //#endregion
2338
+ //#region src/parts/paragraph/links/bidi.d.ts
2339
+ interface DirOptions {
2340
+ val: "ltr" | "rtl";
2341
+ }
2342
+ //#endregion
2284
2343
  //#region src/parts/table/table-row/table-row-properties.d.ts
2285
2344
  interface CnfStyleOptions {
2286
2345
  val?: string;
@@ -2608,16 +2667,9 @@ type SectionChild = {
2608
2667
  } | {
2609
2668
  customXml: CustomXmlBlockOptions;
2610
2669
  } | {
2611
- bookmarkStart: {
2612
- id: number;
2613
- name: string;
2614
- displacedByCustomXml?: "before" | "after";
2615
- };
2670
+ bookmarkStart: BookmarkStartOptions;
2616
2671
  } | {
2617
- bookmarkEnd: {
2618
- id: number;
2619
- displacedByCustomXml?: "before" | "after";
2620
- };
2672
+ bookmarkEnd: MarkupRangeOptions;
2621
2673
  } | {
2622
2674
  rawXml: string;
2623
2675
  };
@@ -3479,6 +3531,8 @@ interface StyleOptions {
3479
3531
  personalReply?: boolean;
3480
3532
  hidden?: boolean;
3481
3533
  rsid?: string;
3534
+ default?: boolean;
3535
+ customStyle?: boolean;
3482
3536
  }
3483
3537
  type ParagraphStyleOptions = {
3484
3538
  paragraph?: ParagraphStylePropertiesOptions;
@@ -3519,10 +3573,15 @@ type TableStyleOptions = {
3519
3573
  } & StyleOptions & {
3520
3574
  id: string;
3521
3575
  };
3576
+ type NumberingStyleOptions = {
3577
+ paragraph?: ParagraphStylePropertiesOptions;
3578
+ run?: RunStylePropertiesOptions;
3579
+ } & StyleOptions & {
3580
+ id: string;
3581
+ };
3522
3582
  declare function stringifyConditionalTableStyle(opts: ConditionalTableStyleOptions): string;
3523
3583
  declare function stringifyTableStyle(opts: TableStyleOptions): string;
3524
- declare const STYLE_ID_TO_DEFAULT_FIELD: Record<string, keyof DefaultStylesOptions>;
3525
- declare function collectDefaultOverrideIds(defaultOpts: DefaultStylesOptions | undefined): Set<string>;
3584
+ declare function stringifyNumberingStyle(opts: NumberingStyleOptions): string;
3526
3585
  declare class DefaultStylesFactory {
3527
3586
  newInstance(options?: DefaultStylesOptions): StylesOptions;
3528
3587
  private build;
@@ -3542,8 +3601,10 @@ interface StylesOptions {
3542
3601
  id: string;
3543
3602
  })[];
3544
3603
  tableStyles?: TableStyleOptions[];
3604
+ numberingStyles?: NumberingStyleOptions[];
3545
3605
  latentStylesXml?: string;
3546
3606
  docDefaultsXml?: string;
3607
+ roundTripped?: boolean;
3547
3608
  }
3548
3609
  declare function extractStyleId(raw: string): string | undefined;
3549
3610
  declare class Styles {
@@ -3748,7 +3809,7 @@ declare class DocxWriteContext implements WriteContext {
3748
3809
  relationships: Relationships;
3749
3810
  };
3750
3811
  numbering: Numbering;
3751
- media: Media;
3812
+ media: Media<MediaData>;
3752
3813
  charts: ChartCollection;
3753
3814
  smartArts: SmartArtCollection;
3754
3815
  embeddings: EmbeddingCollection;
@@ -3756,6 +3817,12 @@ declare class DocxWriteContext implements WriteContext {
3756
3817
  subDocs: SubDocCollection;
3757
3818
  comments: {
3758
3819
  relationships: Relationships;
3820
+ entries: CommentOptions[];
3821
+ nextId: number;
3822
+ };
3823
+ markupIds: {
3824
+ rangeNext: number;
3825
+ moveRunNext: number;
3759
3826
  };
3760
3827
  footNotes: {
3761
3828
  relationships: Relationships;
@@ -3778,7 +3845,7 @@ declare class DocxWriteContext implements WriteContext {
3778
3845
  private _sectionProperties;
3779
3846
  get sectionProperties(): readonly SectionPropertiesOptions[];
3780
3847
  addRelationship(_type: string, _target: string, _mode?: string): string;
3781
- addMedia(_data: Uint8Array, _type: string): string;
3848
+ addMedia(data: Uint8Array, type: string): string;
3782
3849
  private _headers;
3783
3850
  private _footers;
3784
3851
  _options: DocumentOptions;
@@ -3909,5 +3976,5 @@ interface DocumentOptions extends CorePropertiesOptions {
3909
3976
  }
3910
3977
  declare const corePropertiesDesc: CustomDescriptor<CorePropertiesOptions>;
3911
3978
  //#endregion
3912
- export { CaptionOptions as $, TabStopDefinition as $a, SoftHyphen as $i, DropDownListOptions as $n, CharacterSet as $o, createBodyProperties as $r, parseSectionPropertiesEl as $t, SubDocData as A, VerticalMergeType as Aa, ParagraphPropertiesOptionsBase as Ai, CustomXmlCellOptions as An, SdtDropDownListOptions as Ao, ExtendedMediaData as Ar, DocPartGallery as At, DefaultStylesOptions as B, RelativeVerticalPosition as Ba, AnnotationReference as Bi, TableRowPropertiesOptionsBase as Bn, RunPropertiesOptions as Bo, ShapeStyleOptions as Br, endnotesDesc as Bt, TargetScreenSize as C, tableDesc as Ca, TextWrappingType as Ci, DocGridAttributesProperties as Cn, parseTocFieldInstruction as Co, ChartOptions as Cr, Numbering as Ct, framesetXml as D, TableRowOptions as Da, LevelParagraphStylePropertiesOptions as Di, ColumnAttributes as Dn, SdtDataBindingOptions as Do, MediaTransformation as Dr, LevelSuffix as Dt, frameXml as E, SdtRowOptions as Ea, SymbolRunOptions as Ei, ColumnsAttributes as En, SdtComboBoxOptions as Eo, Media as Er, LevelFormat as Et, extractStyleId as F, TablePropertiesOptionsBase$1 as Fa, BreakOptions as Fi, SdtCellOptions as Fn, StyleLevel as Fo, SmartArtMediaData as Fr, FootnoteSeparator as Ft, TableStyleOptions as G, MathDelimiterProperties as Ga, EndnoteReference as Gi, ParagraphChild as Gn, EmphasisMarkType as Go, FlatTextOptions as Gr, sectionMarginDefaults as Gt, ParagraphStyleOptions as H, TableFloatOptions as Ha, ContinuationSeparator as Hi, FootnoteEndnoteReferenceOptions as Hn, TextEffect as Ho, WpsShapeCoreOptions as Hr, SectionPropertiesChangeOptions as Ht, parseStyleDefinitions as I, TableLookOptions as Ia, PageNumber as Ii, TableCellOptions as In, TableOfContentsOptions as Io, WORKAROUND2 as Ir, FootnotesData as It, stringifyCharacterStyle as J, MathNaryProperties as Ja, MonthLong as Ji, SmartArtChild as Jn, BorderOptions as Jo, TextBodyWrappingType as Jr, DocumentAttributeNamespaces as Jt, TableStyleOverrideType as K, MathInput as Ka, FootnoteReferenceElement as Ki, ParagraphOptions as Kn, ShadingAttributesProperties as Ko, NormalAutofitOptions as Kr, sectionPageSizeDefaults as Kt, CharacterStyleOptions as L, TableLayoutType as La, ParagraphRunOptions as Li, CnfStyleOptions as Ln, HighlightColor as Lo, WpgCommonMediaData as Lr, footnotesDesc as Lt, StylesOptions as M, TablePropertyExOptions as Ma, TextAlignmentType as Mi, CustomXmlPropertiesOptions as Mn, SdtLock as Mo, MediaData as Mr, DocPartType as Mt, buildNumberingCache as N, TablePropertiesChangeOptions$1 as Na, TextboxTightWrapType as Ni, CustomXmlRowOptions as Nn, SdtPropertiesOptions as No, MediaDataTransformation as Nr, GlossaryDocumentOptions as Nt, webSettingsDesc as O, TableCellBordersOptions as Oa, ParagraphPropertiesChangeOptions as Oi, CustomXmlAttributeOptions as On, SdtDateMappingType as Oo, createTransformation as Or, LevelsOptions as Ot, buildStyleCache as P, TablePropertiesOptions$1 as Pa, BreakClear as Pi, CustomXmlRunOptions as Pn, SdtTextOptions as Po, NonVisualPropertiesOptions as Pr, glossaryDesc as Pt, AutoCaptionOptions as Q, LeaderType as Qa, Separator as Qi, CheckBoxOptions as Qn, AltChunkData as Qo, VerticalAnchor as Qr, SubDocOptions as Qt, ConditionalTableStyleOptions as R, OverlapType as Ra, RunOptions as Ri, TableRowPropertiesChangeOptions as Rn, ParagraphRunPropertiesOptions as Ro, WpgMediaData as Rr, EndnoteSeparator as Rt, OptimizeForBrowserOptions as S, setTableParseChild as Sa, TextWrappingSide as Si, PageSizeAttributes as Sn, parseTocFieldFromElements as So, SmartArtOptions as Sr, AbstractNumberingOptions as St, WebSettingsOptions as T, HeightRule as Ta, DrawingOptions as Ti, createDocumentGrid as Tn, SdtCheckboxSymbol as To, createImageData as Tr, parseNumberingDefinitions as Tt, STYLE_ID_TO_DEFAULT_FIELD as U, TABLE_BORDERS_NONE as Ua, DayLong as Ui, ImageChild as Un, UnderlineType as Uo, WpsShapeOptions as Ur, SectionPropertiesOptions as Ut, DocumentDefaultsOptions as V, TableAnchorType as Va, CarriageReturn as Vi, ChartChild as Vn, RunStylePropertiesOptions as Vo, StyleMatrixReferenceOptions as Vr, HeaderFooterGroup as Vt, StyleOptions as W, TableBordersOptions as Wa, DayShort as Wi, MathChild as Wn, FontAttributesProperties as Wo, BodyPropertiesOptions as Wr, SectionPropertiesOptionsBase as Wt, stringifyParagraphStyle as X, MathScriptType as Xa, NoBreakHyphen as Xi, ProofErrorTypeValue as Xn, AltChunkOptions as Xo, TextVertOverflowType as Xr, SectionOptions as Xt, stringifyConditionalTableStyle as Y, MathRunPropertiesOptions as Ya, MonthShort as Yi, ProofErrorType as Yn, BorderStyle as Yo, TextHorzOverflowType as Yr, SectionChild as Yt, stringifyTableStyle as Z, MathStyleType as Za, PageNumberElement as Zi, SmartTagRunOptions as Zn, AltChunkCollection as Zo, TextVerticalType as Zr, VmlShapeStyle as Zt, parseArchive as _, SpaceType as _a, VerticalPositionOptions as _i, PageBordersOptions as _n, createVerticalAlign as _o, WpsShapeRunOptions as _r, SettingsOptions as _t, CustomPropertyOptions as a, ObjectEmbedOptions as aa, WpgGroupOptions as ai, createHeaderFooterReference as an, BreakType as ao, createFormFieldData as ar, withAltChunkOverrides as as, MailMergeDataType as at, DivBorderOptions as b, parseTablePropertiesEl as ba, createWrapTight as bi, createPageNumberType as bn, stringifyTableOfContents as bo, DocumentBackgroundOptions as br, CompatibilityOptions as bt, AppPropertiesOptions as c, objectDesc as ca, GroupShapeLocksOptions as ci, LineNumberAttributes as cn, CnfConditionalOptions as co, RubyOptions as cr, SourceTypeOptions as cs, MailMergeOptions as ct, EmbeddedFontOptionsWithKey as d, FrameAnchorType as da, createVerticalPosition as di, PageTextDirectionType as dn, TableWidthProperties as do, PositionalTabOptions as dr, OdsoFieldMapDataOptions as dt, Tab as ea, parseBodyProperties as ei, sectionPropertiesDesc as en, TabStopPosition as eo, FormFieldCommonOptions as er, ContentTypeDefault as es, CaptionsOptions as et, BodyContext as f, FrameOptions$1 as fa, createHorizontalPosition as fi, PageMarginAttributes as fn, WidthType as fo, PositionalTabRelativeTo as fr, OdsoFieldType as ft, DocxPartRefs as g, NumberFormat as ga, Margins as gi, PageBorderZOrder as gn, VerticalAlignTable as go, WpgGroupRunOptions as gr, RsidsOptions as gt, DocxDocument as h, HorizontalPositionAlign as ha, HorizontalPositionRelativeFrom as hi, PageBorderOffsetFrom as hn, VerticalAlignSection as ho, SimpleFieldOptions as hr, RevisionViewOptions as ht, CustomPropertiesInput as i, ObjectElementOptions as ia, WpgGroupCoreOptions as ii, HeaderFooterType as in, SpacingProperties as io, TextInputOptions as ir, contentTypesDesc as is, HyphenationOptions as it, Styles as j, TablePropertyExChangeOptions as ja, ParagraphStylePropertiesOptions as ji, CustomXmlDataBindingOptions as jn, SdtListItem as jo, GroupChildMediaData as jr, DocPartOptions as jt, SubDocCollection as k, TextDirection as ka, ParagraphPropertiesOptions as ki, CustomXmlBlockOptions as kn, SdtDateOptions as ko, ChartMediaData as kr, DocPartBehavior as kt, appPropertiesDesc as l, AlignmentFrameOptions as la, drawingDesc as li, LineNumberRestartFormat as ln, BordersOptions as lo, PositionalTabAlignment as lr, bibliographyDesc as ls, MailMergeSourceType as lt, DocxWriteContext as m, XYFrameOptions as ma, HorizontalPositionOptions as mi, PageBorderDisplay as mn, TableVerticalAlign as mo, CommentsOptions as mr, ReadModeInkLockDownOptions as mt, FeaturesOptions as n, YearShort as na, ChildOffset as ni, HeaderFooterReferenceOptions as nn, HeadingLevel as no, FormFieldTextOptions as nr, ContentTypesInput as ns, EndnotePropertiesOptions as nt, customPropertiesDesc as o, ObjectIconImageOptions as oa, DrawingDescriptorOptions as oi, SectionType as on, BreakTypeValue as oo, parseFormFieldData as or, withMediaDefaults as os, MailMergeDest as ot, DocxReadContext as p, FrameWrap as pa, Floating as pi, createPageMargin as pn, SectionVerticalAlign as po, CommentOptions as pr, OdsoOptions as pt, collectDefaultOverrideIds as q, MathNaryLimitLocation as qa, LastRenderedPageBreak as qi, SdtRunOptions as qn, ShadingType as qo, PresetTextShapeOptions as qr, DocumentAttributeNamespace as qt, corePropertiesDesc as r, ObjectControlOptions as ra, GroupChild as ri, HeaderFooterReferenceType as rn, LineRuleType as ro, FormFieldTextType as rr, buildContentTypesFromRegistry as rs, FootnotePropertiesOptions as rt, AppPropertiesInput as s, ObjectLinkOptions as sa, GraphicFrameLocksOptions as si, createSectionType as sn, IndentAttributesProperties as so, RubyAlign as sr, BibliographyOptions as ss, MailMergeDocType as st, DocumentOptions as t, YearLong as ta, ChildExtent as ti, stringifySectionPropertiesXml as tn, TabStopType as to, FormFieldOptions as tr, ContentTypeOverride as ts, DocumentProtectionOptions as tt, settingsDesc as u, DropCapType as ua, resetDrawingIdGen as ui, createLineNumberType as un, AlignmentType as uo, PositionalTabLeader as ur, MathPropertiesOptions as ut, parseDocument as v, VerticalPositionAlign as va, VerticalPositionRelativeFrom as vi, PageNumberSeparator as vn, CellMergeAttributes as vo, BackgroundImageOptions as vr, WriteProtectionOptions as vt, WebSettingsInput as w, TableOptions as wa, Distance as wi, DocumentGridType as wn, SdtCheckboxOptions as wo, ImageOptions as wr, NumberingOptions as wt, DivOptions as x, parseTableRowPropertiesEl as xa, TextWrapping as xi, PageOrientation as xn, parseToc as xo, SmartArtNode as xr, ConcreteNumberingOptions as xt, parseDocx as y, parseTableCellPropertiesEl as ya, createWrapThrough as yi, PageNumberTypeAttributes as yn, VerticalMergeRevisionType as yo, BackgroundRawMediaOptions as yr, CompatSettingOptions as yt, DefaultStylesFactory as z, RelativeHorizontalPosition as za, breakXml as zi, TableRowPropertiesOptions as zn, RunPropertiesChangeOptions as zo, WpsMediaData as zr, EndnotesData as zt };
3913
- //# sourceMappingURL=core-properties-DFRUHpWM.d.mts.map
3979
+ export { CaptionOptions as $, Separator as $a, setTableParseChild as $i, SdtRunOptions as $n, RunStylePropertiesOptions as $o, PresetTextShapeOptions as $r, parseSectionPropertiesEl as $t, SubDocData as A, BookmarkStartOptions as Aa, Distance as Ai, CustomXmlCellOptions as An, CellMergeAttributes as Ao, ChartOptions as Ar, DocPartGallery as At, DefaultStylesOptions as B, breakXml as Ba, AlignmentFrameOptions as Bi, TableRowPropertiesOptionsBase as Bn, SdtDateMappingType as Bo, MediaDataTransformation as Br, endnotesDesc as Bt, TargetScreenSize as C, MathInput as Ca, VerticalPositionOptions as Ci, DocGridAttributesProperties as Cn, TableWidthProperties as Co, WpgGroupRunOptions as Cr, Numbering as Ct, framesetXml as D, MathScriptType as Da, TextWrapping as Di, ColumnAttributes as Dn, VerticalAlignSection as Do, DocumentBackgroundOptions as Dr, LevelSuffix as Dt, frameXml as E, MathRunPropertiesOptions as Ea, createWrapTight as Ei, ColumnsAttributes as En, TableVerticalAlign as Eo, BackgroundRawMediaOptions as Er, LevelFormat as Et, extractStyleId as F, BreakClear as Fa, ParagraphPropertiesOptions as Fi, SdtCellOptions as Fn, parseTocFieldInstruction as Fo, createTransformation as Fr, FootnoteSeparator as Ft, TableStyleOptions as G, DayShort as Ga, XYFrameOptions as Gi, HyperlinkType as Gn, SdtPropertiesOptions as Go, WpsMediaData as Gr, sectionMarginDefaults as Gt, NumberingStyleOptions as H, CarriageReturn as Ha, FrameAnchorType as Hi, NumberedItemReferenceFormat as Hn, SdtDropDownListOptions as Ho, SmartArtMediaData as Hr, SectionPropertiesChangeOptions as Ht, parseStyleDefinitions as I, BreakOptions as Ia, ParagraphPropertiesOptionsBase as Ii, TableCellOptions as In, SdtCheckboxOptions as Io, ChartMediaData as Ir, FootnotesData as It, stringifyConditionalTableStyle as J, LastRenderedPageBreak as Ja, SpaceType as Ji, FootnoteEndnoteReferenceOptions as Jn, TableOfContentsOptions as Jo, WpsShapeCoreOptions as Jr, DocumentAttributeNamespaces as Jt, TableStyleOverrideType as K, EndnoteReference as Ka, HorizontalPositionAlign as Ki, InternalHyperlinkOptions as Kn, SdtTextOptions as Ko, ShapeStyleOptions as Kr, sectionPageSizeDefaults as Kt, CharacterStyleOptions as L, PageNumber as La, ParagraphStylePropertiesOptions as Li, CnfStyleOptions as Ln, SdtCheckboxSymbol as Lo, ExtendedMediaData as Lr, footnotesDesc as Lt, StylesOptions as M, MarkupRangeOptions as Ma, SymbolRunOptions as Mi, CustomXmlPropertiesOptions as Mn, stringifyTableOfContents as Mo, createImageData as Mr, DocPartType as Mt, buildNumberingCache as N, MoveRangeChildOptions as Na, LevelParagraphStylePropertiesOptions as Ni, CustomXmlRowOptions as Nn, parseToc as No, Media as Nr, GlossaryDocumentOptions as Nt, webSettingsDesc as O, MathStyleType as Oa, TextWrappingSide as Oi, CustomXmlAttributeOptions as On, VerticalAlignTable as Oo, SmartArtNode as Or, LevelsOptions as Ot, buildStyleCache as P, MoveRangeStartOptions as Pa, ParagraphPropertiesChangeOptions as Pi, CustomXmlRunOptions as Pn, parseTocFieldFromElements as Po, MediaTransformation as Pr, glossaryDesc as Pt, AutoCaptionOptions as Q, PageNumberElement as Qa, parseTableRowPropertiesEl as Qi, ParagraphOptions as Qn, RunPropertiesOptions as Qo, NormalAutofitOptions as Qr, SubDocOptions as Qt, ConditionalTableStyleOptions as R, ParagraphRunOptions as Ra, TextAlignmentType as Ri, TableRowPropertiesChangeOptions as Rn, SdtComboBoxOptions as Ro, GroupChildMediaData as Rr, EndnoteSeparator as Rt, OptimizeForBrowserOptions as S, MathDelimiterProperties as Sa, Margins as Si, PageSizeAttributes as Sn, AlignmentType as So, SimpleFieldOptions as Sr, AbstractNumberingOptions as St, WebSettingsOptions as T, MathNaryProperties as Ta, createWrapThrough as Ti, createDocumentGrid as Tn, SectionVerticalAlign as To, BackgroundImageOptions as Tr, parseNumberingDefinitions as Tt, ParagraphStyleOptions as U, ContinuationSeparator as Ua, FrameOptions$1 as Ui, NumberedItemReferenceOptions as Un, SdtListItem as Uo, WpgCommonMediaData as Ur, SectionPropertiesOptions as Ut, DocumentDefaultsOptions as V, AnnotationReference as Va, DropCapType as Vi, DirOptions as Vn, SdtDateOptions as Vo, NonVisualPropertiesOptions as Vr, HeaderFooterGroup as Vt, StyleOptions as W, DayLong as Wa, FrameWrap as Wi, ExternalHyperlinkOptions as Wn, SdtLock as Wo, WpgMediaData as Wr, SectionPropertiesOptionsBase as Wt, stringifyParagraphStyle as X, MonthShort as Xa, parseTableCellPropertiesEl as Xi, MathChild as Xn, ParagraphRunPropertiesOptions as Xo, BodyPropertiesOptions as Xr, SectionOptions as Xt, stringifyNumberingStyle as Y, MonthLong as Ya, VerticalPositionAlign as Yi, ImageChild as Yn, HighlightColor as Yo, WpsShapeOptions as Yr, SectionChild as Yt, stringifyTableStyle as Z, NoBreakHyphen as Za, parseTablePropertiesEl as Zi, ParagraphChild as Zn, RunPropertiesChangeOptions as Zo, FlatTextOptions as Zr, VmlShapeStyle as Zt, parseArchive as _, RelativeVerticalPosition as _a, createVerticalPosition as _i, PageBordersOptions as _n, BreakType as _o, PositionalTabOptions as _r, withAltChunkOverrides as _s, SettingsOptions as _t, CustomPropertyOptions as a, TableCellBordersOptions as aa, createBodyProperties as ai, createHeaderFooterReference as an, ObjectElementOptions as ao, DropDownListOptions as ar, ShadingType as as, MailMergeDataType as at, DivBorderOptions as b, TABLE_BORDERS_NONE as ba, HorizontalPositionOptions as bi, createPageNumberType as bn, CnfConditionalOptions as bo, CommentOptions as br, SourceTypeOptions as bs, CompatibilityOptions as bt, AppPropertiesOptions as c, TablePropertyExChangeOptions as ca, ChildOffset as ci, LineNumberAttributes as cn, ObjectLinkOptions as co, FormFieldTextOptions as cr, AltChunkOptions as cs, MailMergeOptions as ct, EmbeddedFontOptionsWithKey as d, TablePropertiesOptions$1 as da, WpgGroupOptions as di, PageTextDirectionType as dn, TabStopDefinition as do, createFormFieldData as dr, CharacterSet as ds, OdsoFieldMapDataOptions as dt, tableDesc as ea, TextBodyWrappingType as ei, sectionPropertiesDesc as en, SoftHyphen as eo, SmartArtChild as er, TextEffect as es, CaptionsOptions as et, BodyContext as f, TablePropertiesOptionsBase$1 as fa, DrawingDescriptorOptions as fi, PageMarginAttributes as fn, TabStopPosition as fo, parseFormFieldData as fr, ContentTypeDefault as fs, OdsoFieldType as ft, DocxPartRefs as g, RelativeHorizontalPosition as ga, resetDrawingIdGen as gi, PageBorderZOrder as gn, SpacingProperties as go, PositionalTabLeader as gr, contentTypesDesc as gs, RsidsOptions as gt, DocxDocument as h, OverlapType as ha, drawingDesc as hi, PageBorderOffsetFrom as hn, LineRuleType as ho, PositionalTabAlignment as hr, buildContentTypesFromRegistry as hs, RevisionViewOptions as ht, CustomPropertiesInput as i, TableRowOptions as ia, VerticalAnchor as ii, HeaderFooterType as in, ObjectControlOptions as io, CheckBoxOptions as ir, ShadingAttributesProperties as is, HyphenationOptions as it, Styles as j, DisplacedByCustomXml as ja, DrawingOptions as ji, CustomXmlDataBindingOptions as jn, VerticalMergeRevisionType as jo, ImageOptions as jr, DocPartOptions as jt, SubDocCollection as k, BookmarkChildOptions as ka, TextWrappingType as ki, CustomXmlBlockOptions as kn, createVerticalAlign as ko, SmartArtOptions as kr, DocPartBehavior as kt, appPropertiesDesc as l, TablePropertyExOptions as la, GroupChild as li, LineNumberRestartFormat as ln, objectDesc as lo, FormFieldTextType as lr, AltChunkCollection as ls, MailMergeSourceType as lt, DocxWriteContext as m, TableLayoutType as ma, GroupShapeLocksOptions as mi, PageBorderDisplay as mn, HeadingLevel as mo, RubyOptions as mr, ContentTypesInput as ms, ReadModeInkLockDownOptions as mt, FeaturesOptions as n, HeightRule as na, TextVertOverflowType as ni, HeaderFooterReferenceOptions as nn, YearLong as no, ProofErrorTypeValue as nr, FontAttributesProperties as ns, EndnotePropertiesOptions as nt, customPropertiesDesc as o, TextDirection as oa, parseBodyProperties as oi, SectionType as on, ObjectEmbedOptions as oo, FormFieldCommonOptions as or, BorderOptions as os, MailMergeDest as ot, DocxReadContext as p, TableLookOptions as pa, GraphicFrameLocksOptions as pi, createPageMargin as pn, TabStopType as po, RubyAlign as pr, ContentTypeOverride as ps, OdsoOptions as pt, stringifyCharacterStyle as q, FootnoteReferenceElement as qa, NumberFormat as qi, ChartChild as qn, StyleLevel as qo, StyleMatrixReferenceOptions as qr, DocumentAttributeNamespace as qt, corePropertiesDesc as r, SdtRowOptions as ra, TextVerticalType as ri, HeaderFooterReferenceType as rn, YearShort as ro, SmartTagRunOptions as rr, EmphasisMarkType as rs, FootnotePropertiesOptions as rt, AppPropertiesInput as s, VerticalMergeType as sa, ChildExtent as si, createSectionType as sn, ObjectIconImageOptions as so, FormFieldOptions as sr, BorderStyle as ss, MailMergeDocType as st, DocumentOptions as t, TableOptions as ta, TextHorzOverflowType as ti, stringifySectionPropertiesXml as tn, Tab as to, ProofErrorType as tr, UnderlineType as ts, DocumentProtectionOptions as tt, settingsDesc as u, TablePropertiesChangeOptions$1 as ua, WpgGroupCoreOptions as ui, createLineNumberType as un, LeaderType as uo, TextInputOptions as ur, AltChunkData as us, MathPropertiesOptions as ut, parseDocument as v, TableAnchorType as va, createHorizontalPosition as vi, PageNumberSeparator as vn, BreakTypeValue as vo, PositionalTabRelativeTo as vr, withMediaDefaults as vs, WriteProtectionOptions as vt, WebSettingsInput as w, MathNaryLimitLocation as wa, VerticalPositionRelativeFrom as wi, DocumentGridType as wn, WidthType as wo, WpsShapeRunOptions as wr, NumberingOptions as wt, DivOptions as x, TableBordersOptions as xa, HorizontalPositionRelativeFrom as xi, PageOrientation as xn, BordersOptions as xo, CommentsOptions as xr, bibliographyDesc as xs, ConcreteNumberingOptions as xt, parseDocx as y, TableFloatOptions as ya, Floating as yi, PageNumberTypeAttributes as yn, IndentAttributesProperties as yo, CommentChildOptions as yr, BibliographyOptions as ys, CompatSettingOptions as yt, DefaultStylesFactory as z, RunOptions as za, TextboxTightWrapType as zi, TableRowPropertiesOptions as zn, SdtDataBindingOptions as zo, MediaData as zr, EndnotesData as zt };
3980
+ //# sourceMappingURL=core-properties-DQWsBBjj.d.mts.map