@office-open/pptx 0.7.1 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1,11 +1,190 @@
1
- import { AppProperties, BaseXmlComponent, BuilderElement, CompressionOptions, Context, DataType, EmptyElement, ImportedXmlComponent, OutputByType, OutputType, PackerOptions, ParsedArchive, RelationshipType, Relationships, XmlComponent, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, hashedId, parseArchive, uniqueId, uniqueNumericIdCreator, uniqueUuid } from "@office-open/core";
1
+ import { AppProperties, BaseXmlComponent, BuilderElement, CompressionOptions, Context, DataType, EmptyElement, ImportedXmlComponent, OutputByType, OutputType, PackerOptions, ParsedArchive, RelationshipType, Relationships, ShapeLockingOptions, TableStyleListOptions, XmlComponent, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, hashedId, parseArchive, uniqueId, uniqueNumericIdCreator, uniqueUuid } from "@office-open/core";
2
2
  import { BevelOptions, BevelPresetType, BlipFillConfigOptions, BlipFillMediaData, ColorTransformOptions, CompoundLine, EffectListOptions, FillOptions, GradientFillOptions as CoreGradientFillOptions, GradientStop, GradientStopOptions, GroupTransform2DOptions, LineCap, LineJoin, OutlineOptions as CoreOutlineOptions, PathShadeType, PenAlignment, PresetDash, PresetGeometry, PresetMaterialType, Scene3DOptions, Shape3DOptions, TileFlipMode, Transform2DOptions, buildFill, createBevel, createBottomBevel, createColorElement, createColorTransforms, createEffectList, createGradientFill, createGradientStop, createOutline, createScene3D, createScene3D as createScene3D$1, createShape3D, createShape3D as createShape3D$1, extractBlipFillMedia } from "@office-open/core/drawingml";
3
3
  import { ChartCollection, ChartData, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType } from "@office-open/core/chart";
4
4
  import { Element } from "@office-open/xml";
5
5
  import { SmartArtCollection, TreeNode } from "@office-open/core/smartart";
6
+ import { ColorSchemeOptions, DefaultTheme, FontSchemeOptions, ThemeOptions } from "@office-open/core/theme";
6
7
  import { Buffer } from "\u0000polyfill-node.buffer";
7
8
  export * from "@office-open/core/values";
8
9
 
10
+ //#region src/file/view-properties.d.ts
11
+ type SplitterBarState = "restored" | "maximized" | "minimized";
12
+ interface NormalViewOptions {
13
+ readonly showOutlineIcons?: boolean;
14
+ readonly snapVertSplitter?: boolean;
15
+ readonly vertBarState?: SplitterBarState;
16
+ readonly horzBarState?: SplitterBarState;
17
+ readonly preferSingleView?: boolean;
18
+ }
19
+ interface SlideViewOptions {
20
+ readonly snapToGrid?: boolean;
21
+ readonly snapToObjects?: boolean;
22
+ readonly showGuides?: boolean;
23
+ readonly varScale?: boolean;
24
+ }
25
+ interface ViewPropertiesOptions {
26
+ readonly lastView?: "slideView" | "slideMasterView" | "notesView" | "handoutView" | "outlineView" | "slideSorterView";
27
+ readonly showComments?: boolean;
28
+ readonly gridSpacing?: {
29
+ readonly cx: number;
30
+ readonly cy: number;
31
+ };
32
+ readonly zoomScaleNumerator?: number;
33
+ readonly zoomScaleDenominator?: number;
34
+ readonly normalView?: NormalViewOptions;
35
+ readonly slideView?: SlideViewOptions;
36
+ }
37
+ declare class ViewProperties extends ImportedXmlComponent {
38
+ private static cache;
39
+ private readonly key;
40
+ constructor(opts?: ViewPropertiesOptions);
41
+ toXml(context: Context): string;
42
+ }
43
+ //#endregion
44
+ //#region src/file/handout-master/handout-master.d.ts
45
+ interface ColorMapOptions {
46
+ readonly bg1?: string;
47
+ readonly tx1?: string;
48
+ readonly bg2?: string;
49
+ readonly tx2?: string;
50
+ readonly accent1?: string;
51
+ readonly accent2?: string;
52
+ readonly accent3?: string;
53
+ readonly accent4?: string;
54
+ readonly accent5?: string;
55
+ readonly accent6?: string;
56
+ readonly hlink?: string;
57
+ readonly folHlink?: string;
58
+ }
59
+ interface HeaderFooterOptions {
60
+ readonly date?: boolean;
61
+ readonly header?: boolean;
62
+ readonly footer?: boolean;
63
+ readonly slideNumber?: boolean;
64
+ }
65
+ interface HandoutMasterOptions {
66
+ readonly colorMap?: ColorMapOptions;
67
+ readonly headerFooter?: HeaderFooterOptions;
68
+ }
69
+ declare class DefaultHandoutMaster extends ImportedXmlComponent {
70
+ private static instance;
71
+ private readonly options?;
72
+ constructor(options?: HandoutMasterOptions);
73
+ toXml(context: Context): string;
74
+ }
75
+ //#endregion
76
+ //#region src/file/notes-master/notes-master.d.ts
77
+ interface NotesLevelProperties {
78
+ readonly fontSize?: number;
79
+ readonly marginLeft?: number;
80
+ readonly alignment?: string;
81
+ }
82
+ interface NotesMasterOptions {
83
+ readonly colorMap?: ColorMapOptions;
84
+ readonly headerFooter?: HeaderFooterOptions;
85
+ readonly notesStyle?: readonly NotesLevelProperties[];
86
+ }
87
+ declare class DefaultNotesMaster extends ImportedXmlComponent {
88
+ private static instance;
89
+ private readonly options?;
90
+ constructor(options?: NotesMasterOptions);
91
+ toXml(context: Context): string;
92
+ }
93
+ //#endregion
94
+ //#region src/file/presentation-properties.d.ts
95
+ interface WebPropertiesOptions {
96
+ readonly showAnimation?: boolean;
97
+ readonly resizeGraphics?: boolean;
98
+ readonly allowPng?: boolean;
99
+ readonly relyOnVml?: boolean;
100
+ readonly organizeInFolders?: boolean;
101
+ readonly useLongFilenames?: boolean;
102
+ readonly imageSize?: string;
103
+ readonly encoding?: string;
104
+ readonly color?: string;
105
+ }
106
+ interface PrintPropertiesOptions {
107
+ readonly printWhat?: "slides" | "handouts1" | "handouts2" | "handouts3" | "handouts4" | "handouts6" | "handouts9" | "notes" | "outline";
108
+ readonly colorMode?: "blackWhite" | "gray" | "color";
109
+ readonly hiddenSlides?: boolean;
110
+ readonly scaleToFitPaper?: boolean;
111
+ readonly frameSlides?: boolean;
112
+ }
113
+ interface HtmlPublishPropertiesOptions {
114
+ readonly showSpeakerNotes?: boolean;
115
+ readonly target?: string;
116
+ readonly title?: string;
117
+ readonly rId?: string;
118
+ }
119
+ interface PresentationPropertiesFullOptions {
120
+ readonly show?: ShowOptions;
121
+ readonly web?: WebPropertiesOptions;
122
+ readonly print?: PrintPropertiesOptions;
123
+ readonly htmlPublish?: HtmlPublishPropertiesOptions;
124
+ }
125
+ declare class PresentationProperties extends ImportedXmlComponent {
126
+ private static cache;
127
+ private readonly key;
128
+ constructor(opts?: PresentationPropertiesFullOptions);
129
+ toXml(context: Context): string;
130
+ }
131
+ //#endregion
132
+ //#region src/file/presentation/presentation.d.ts
133
+ interface PhotoAlbumOptions {
134
+ readonly blackWhite?: boolean;
135
+ readonly showCaptions?: boolean;
136
+ readonly layout?: "fitToSlide" | "1pic" | "2pic" | "4pic" | "1picTitle" | "2picTitle" | "4picTitle";
137
+ readonly frame?: "frameStyle1" | "frameStyle2" | "frameStyle3" | "frameStyle4" | "frameStyle5" | "frameStyle6" | "frameStyle7" | "none";
138
+ }
139
+ interface ModifyVerifierOptions {
140
+ readonly password?: string;
141
+ readonly algorithmName?: string;
142
+ readonly hashValue?: string;
143
+ readonly saltValue?: string;
144
+ readonly spinValue?: number;
145
+ readonly cryptoProviderType?: string;
146
+ readonly cryptoAlgorithmClass?: string;
147
+ readonly cryptoAlgorithmType?: string;
148
+ readonly cryptoAlgorithmSid?: number;
149
+ readonly spinCount?: number;
150
+ readonly saltData?: string;
151
+ readonly hashData?: string;
152
+ readonly cryptoProvider?: string;
153
+ readonly algorithmExtensionId?: number;
154
+ readonly algorithmExtensionSource?: string;
155
+ readonly cryptoProviderTypeExtension?: number;
156
+ readonly cryptoProviderTypeExtensionSource?: string;
157
+ }
158
+ interface PresentationOptions {
159
+ readonly slideWidth?: number;
160
+ readonly slideHeight?: number;
161
+ readonly slideIds: readonly number[];
162
+ readonly masterCount: number;
163
+ readonly notesMasterRId?: number;
164
+ readonly handoutMasterRId?: number;
165
+ readonly serverZoom?: string;
166
+ readonly firstSlideNum?: number;
167
+ readonly showSpecialPlsOnTitleSld?: boolean;
168
+ readonly rtl?: boolean;
169
+ readonly removePersonalInfoOnSave?: boolean;
170
+ readonly compatMode?: boolean;
171
+ readonly strictFirstAndLastChars?: boolean;
172
+ readonly embedTrueTypeFonts?: boolean;
173
+ readonly saveSubsetFonts?: boolean;
174
+ readonly autoCompressPictures?: boolean;
175
+ readonly bookmarkIdSeed?: number;
176
+ readonly conformance?: "strict" | "transitional";
177
+ readonly photoAlbum?: PhotoAlbumOptions;
178
+ readonly modifyVerifier?: ModifyVerifierOptions;
179
+ }
180
+ declare class Presentation extends XmlComponent {
181
+ private options;
182
+ constructor(options: PresentationOptions);
183
+ setNotesMasterRId(rId: number): void;
184
+ setHandoutMasterRId(rId: number): void;
185
+ toXml(_context: Context): string;
186
+ }
187
+ //#endregion
9
188
  //#region src/file/drawingml/effects.d.ts
10
189
  declare const ReflectionAlignment: {
11
190
  readonly TOP_LEFT: "topLeft";
@@ -80,6 +259,7 @@ interface BackgroundOptions {
80
259
  readonly fill?: FillOptions;
81
260
  readonly effects?: EffectsOptions;
82
261
  readonly shadeToTitle?: boolean;
262
+ readonly blackWhiteMode?: "clr" | "gray" | "ltGray" | "invGray" | "gmGray" | "bw" | "auto" | "black" | "white";
83
263
  }
84
264
  declare class Background extends XmlComponent {
85
265
  constructor(options?: BackgroundOptions);
@@ -102,6 +282,7 @@ interface CommentEntry {
102
282
  readonly authorId: number;
103
283
  readonly idx: number;
104
284
  readonly date?: string;
285
+ readonly modified?: boolean;
105
286
  readonly x: number;
106
287
  readonly y: number;
107
288
  readonly text: string;
@@ -117,6 +298,7 @@ declare class ContentTypes extends BaseXmlComponent {
117
298
  addSlide(index: number): void;
118
299
  addNotesSlide(index: number): void;
119
300
  addNotesMaster(): void;
301
+ addHandoutMaster(): void;
120
302
  addComments(index: number): void;
121
303
  addCommentAuthors(): void;
122
304
  addChart(index: number): void;
@@ -237,35 +419,6 @@ declare class NotesSlide extends XmlComponent {
237
419
  constructor(options?: NotesSlideOptions);
238
420
  }
239
421
  //#endregion
240
- //#region src/file/presentation-properties.d.ts
241
- interface ShowOptions$1 {
242
- readonly loop?: boolean;
243
- readonly kiosk?: boolean;
244
- readonly showNarration?: boolean;
245
- readonly useTimings?: boolean;
246
- }
247
- declare class PresentationProperties extends ImportedXmlComponent {
248
- private static cache;
249
- private readonly key;
250
- constructor(showOptions?: ShowOptions$1);
251
- toXml(context: Context): string;
252
- }
253
- //#endregion
254
- //#region src/file/presentation/presentation.d.ts
255
- interface PresentationOptions {
256
- readonly slideWidth?: number;
257
- readonly slideHeight?: number;
258
- readonly slideIds: readonly number[];
259
- readonly masterCount: number;
260
- readonly notesMasterRId?: number;
261
- }
262
- declare class Presentation extends XmlComponent {
263
- private options;
264
- constructor(options: PresentationOptions);
265
- setNotesMasterRId(rId: number): void;
266
- toXml(_context: Context): string;
267
- }
268
- //#endregion
269
422
  //#region src/file/presentation/presentation-wrapper.d.ts
270
423
  interface ViewWrapper {
271
424
  readonly view: BaseXmlComponent;
@@ -315,6 +468,50 @@ interface AnimationOptions {
315
468
  readonly animBy?: string;
316
469
  readonly charRange?: readonly [number, number];
317
470
  readonly paragraphRange?: readonly [number, number];
471
+ readonly setBehavior?: {
472
+ readonly attributeName: string;
473
+ readonly toValue: string;
474
+ readonly toType?: "string" | "number";
475
+ };
476
+ readonly commandType?: "call" | "evt" | "verb";
477
+ readonly command?: string;
478
+ readonly iterate?: {
479
+ readonly type?: "el" | "wd" | "lt";
480
+ readonly interval?: number;
481
+ readonly backwards?: boolean;
482
+ };
483
+ readonly repeatDuration?: string;
484
+ readonly acceleration?: number;
485
+ readonly deceleration?: number;
486
+ readonly restart?: "always" | "whenNotActive" | "never";
487
+ readonly syncBehavior?: "canSlip" | "isLocked" | "stoppable";
488
+ readonly timeFilter?: string;
489
+ readonly eventFilter?: string;
490
+ readonly display?: boolean;
491
+ readonly masterRelation?: "clearConn" | "keepConn" | "resume";
492
+ readonly buildLevel?: number;
493
+ readonly groupId?: number;
494
+ readonly afterEffect?: boolean;
495
+ readonly nodePlaceholder?: boolean;
496
+ readonly advanceAfterTime?: string;
497
+ readonly animateBackground?: boolean;
498
+ readonly autoUpdateAnimationBackground?: boolean;
499
+ readonly additive?: "base" | "sum" | "repl" | "mult" | "none";
500
+ readonly accumulate?: "none" | "always";
501
+ readonly transformType?: "pt" | "img";
502
+ readonly runtimeContext?: string;
503
+ readonly override?: "normal" | "childStyle";
504
+ readonly paragraphBuild?: "whole" | "allAtOnce" | "p" | "cust";
505
+ readonly formula?: string;
506
+ readonly colorSpace?: "rgb" | "hsl";
507
+ readonly pathEditMode?: "relative" | "fixed" | "none";
508
+ readonly previousAction?: "none" | "skipTimed";
509
+ readonly pointsTypes?: string;
510
+ readonly rotationAngle?: number;
511
+ readonly zoomContents?: boolean;
512
+ readonly showWhenStopped?: boolean;
513
+ readonly numberOfSlides?: number;
514
+ readonly propertyList?: string;
318
515
  }
319
516
  //#endregion
320
517
  //#region src/file/drawingml/outline.d.ts
@@ -385,6 +582,7 @@ interface ParagraphPropertiesOptions {
385
582
  readonly marginIndent?: number;
386
583
  readonly marginRight?: number;
387
584
  readonly defTabSize?: number;
585
+ readonly fontAlignment?: "auto" | "t" | "ctr" | "b" | "base";
388
586
  }
389
587
  declare class ParagraphProperties extends XmlComponent {
390
588
  private readonly options;
@@ -411,6 +609,10 @@ declare const TextCapitalization: {
411
609
  interface HyperlinkOptions {
412
610
  readonly url: string;
413
611
  readonly tooltip?: string;
612
+ readonly action?: string;
613
+ readonly highlightClick?: boolean;
614
+ readonly endSound?: boolean;
615
+ readonly invalidUrl?: boolean;
414
616
  }
415
617
  interface RunPropertiesOptions {
416
618
  readonly fontSize?: number;
@@ -430,6 +632,11 @@ interface RunPropertiesOptions {
430
632
  readonly rightToLeft?: boolean;
431
633
  readonly noProof?: boolean;
432
634
  readonly dirty?: boolean;
635
+ readonly kumimoji?: boolean;
636
+ readonly alternateLanguage?: string;
637
+ readonly normalizeHeight?: boolean;
638
+ readonly bookmarkMark?: string;
639
+ readonly smartTagId?: string;
433
640
  }
434
641
  declare function hasRunProperties(options: RunPropertiesOptions): boolean;
435
642
  declare class RunProperties extends XmlComponent {
@@ -496,6 +703,8 @@ interface TableCellOptions {
496
703
  };
497
704
  readonly columnSpan?: number;
498
705
  readonly rowSpan?: number;
706
+ readonly horizontalMerge?: "continue" | "restart";
707
+ readonly verticalMerge?: "continue" | "restart";
499
708
  readonly verticalAlign?: VerticalAlignment;
500
709
  readonly margins?: {
501
710
  readonly top?: number;
@@ -525,6 +734,8 @@ interface TextBodyOptions {
525
734
  readonly left?: number;
526
735
  readonly right?: number;
527
736
  };
737
+ readonly marginTop?: number;
738
+ readonly marginBottom?: number;
528
739
  readonly columns?: number;
529
740
  readonly columnSpacing?: number;
530
741
  }
@@ -550,8 +761,14 @@ interface ShapeOptions {
550
761
  readonly rotation?: number;
551
762
  readonly textBody?: TextBodyOptions;
552
763
  readonly animation?: AnimationOptions;
764
+ readonly locking?: ShapeLockingOptions;
553
765
  readonly placeholder?: "title" | "body" | "subTitle" | "sldNum" | "dt" | "ftr" | "hdr" | "obj";
554
766
  readonly placeholderIndex?: number;
767
+ readonly useBackgroundFill?: boolean;
768
+ readonly isPhoto?: boolean;
769
+ readonly userDrawn?: boolean;
770
+ readonly hasCustomPrompt?: boolean;
771
+ readonly blackWhiteMode?: "clr" | "auto" | "gray" | "ltGray" | "invGray" | "grayWhite" | "blackGray" | "blackWhite" | "black" | "white" | "hidden";
555
772
  }
556
773
  declare class Shape extends XmlComponent {
557
774
  private static nextId;
@@ -667,6 +884,33 @@ declare class VideoFrame extends MediaFrameBase {
667
884
  constructor(options: VideoFrameOptions);
668
885
  }
669
886
  //#endregion
887
+ //#region src/file/ole/ole-frame.d.ts
888
+ interface OleEmbedOptions {
889
+ readonly rId: string;
890
+ readonly lastEdited?: string;
891
+ }
892
+ interface OleLinkOptions {
893
+ readonly rId: string;
894
+ readonly updateLastEdited?: string;
895
+ readonly autoUpdate?: boolean;
896
+ }
897
+ interface OleOptions {
898
+ readonly x?: number;
899
+ readonly y?: number;
900
+ readonly width?: number;
901
+ readonly height?: number;
902
+ readonly progId?: string;
903
+ readonly spid?: string;
904
+ readonly name?: string;
905
+ readonly showAsIcon?: boolean;
906
+ readonly imgW?: number;
907
+ readonly imgH?: number;
908
+ readonly embed?: OleEmbedOptions;
909
+ readonly link?: OleLinkOptions;
910
+ readonly imgRId?: string;
911
+ readonly followColorScheme?: "none" | "full" | "textAndBackground";
912
+ }
913
+ //#endregion
670
914
  //#region src/file/picture/picture.d.ts
671
915
  interface PictureOptions {
672
916
  readonly x?: number;
@@ -784,6 +1028,7 @@ interface DrawingTableOptions {
784
1028
  readonly firstCol?: boolean;
785
1029
  readonly lastCol?: boolean;
786
1030
  readonly bandCol?: boolean;
1031
+ readonly tableStyleId?: string;
787
1032
  readonly borders?: {
788
1033
  readonly top?: CellBorderOptions;
789
1034
  readonly bottom?: CellBorderOptions;
@@ -830,6 +1075,8 @@ type SlideChild = BaseXmlComponent | {
830
1075
  group: GroupShapeOptions;
831
1076
  } | {
832
1077
  smartart: SmartArtOptions;
1078
+ } | {
1079
+ ole: OleOptions;
833
1080
  };
834
1081
  //#endregion
835
1082
  //#region src/file/transition/transition.d.ts
@@ -857,54 +1104,16 @@ declare class Slide extends XmlComponent {
857
1104
  private readonly background?;
858
1105
  private readonly transition?;
859
1106
  readonly HeaderFooter?: SlideHeaderFooterOptions;
860
- constructor(children: readonly SlideChild[], background?: Background, transition?: TransitionOptions, headerFooter?: SlideHeaderFooterOptions);
1107
+ private readonly showMasterSp?;
1108
+ private readonly showMasterPhAnim?;
1109
+ constructor(children: readonly SlideChild[], background?: Background, transition?: TransitionOptions, headerFooter?: SlideHeaderFooterOptions, showMasterSp?: boolean, showMasterPhAnim?: boolean);
861
1110
  toXml(context: Context): string;
862
1111
  }
863
1112
  //#endregion
864
1113
  //#region src/file/table-styles.d.ts
865
- declare class TableStyles extends ImportedXmlComponent {
866
- private static instance;
867
- constructor();
868
- toXml(context: Context): string;
869
- }
870
- //#endregion
871
- //#region src/file/theme/theme.d.ts
872
- interface ColorSchemeOptions {
873
- dark1?: string;
874
- light1?: string;
875
- dark2?: string;
876
- light2?: string;
877
- accent1?: string;
878
- accent2?: string;
879
- accent3?: string;
880
- accent4?: string;
881
- accent5?: string;
882
- accent6?: string;
883
- hyperlink?: string;
884
- followedHyperlink?: string;
885
- }
886
- interface FontSchemeOptions {
887
- majorFont?: string;
888
- minorFont?: string;
889
- majorFontAsian?: string;
890
- minorFontAsian?: string;
891
- }
892
- interface ThemeOptions {
893
- name?: string;
894
- colors?: ColorSchemeOptions;
895
- fonts?: FontSchemeOptions;
896
- }
897
- declare class DefaultTheme extends ImportedXmlComponent {
898
- private static cache;
899
- private readonly cacheKey;
900
- constructor(options?: ThemeOptions);
901
- toXml(context: Context): string;
902
- }
903
- //#endregion
904
- //#region src/file/view-properties.d.ts
905
- declare class ViewProperties extends ImportedXmlComponent {
906
- private static instance;
907
- constructor();
1114
+ declare class TableStyles extends BaseXmlComponent {
1115
+ private readonly opts?;
1116
+ constructor(opts?: TableStyleListOptions);
908
1117
  toXml(context: Context): string;
909
1118
  }
910
1119
  //#endregion
@@ -927,6 +1136,7 @@ interface LayoutPlaceholderOptions {
927
1136
  interface LayoutDefinition {
928
1137
  readonly type?: SlideLayoutType;
929
1138
  readonly name?: string;
1139
+ readonly matchingName?: string;
930
1140
  readonly placeholders?: LayoutPlaceholderOptions;
931
1141
  readonly children?: readonly MasterChild[];
932
1142
  }
@@ -952,18 +1162,51 @@ interface SlideOptions {
952
1162
  readonly comments?: readonly SlideCommentOptions[];
953
1163
  readonly layout?: SlideLayoutType | string;
954
1164
  readonly master?: string;
1165
+ readonly showMasterShapes?: boolean;
1166
+ readonly showMasterPlaceholderAnimations?: boolean;
955
1167
  }
956
1168
  interface ShowOptions {
957
1169
  readonly loop?: boolean;
958
- readonly kiosk?: boolean;
1170
+ readonly type?: "present" | "browse" | "kiosk";
1171
+ readonly showScrollbar?: boolean;
1172
+ readonly restart?: number;
959
1173
  readonly showNarration?: boolean;
1174
+ readonly showAnimation?: boolean;
960
1175
  readonly useTimings?: boolean;
1176
+ readonly slideRange?: {
1177
+ readonly start: number;
1178
+ readonly end: number;
1179
+ };
1180
+ readonly penColor?: string;
961
1181
  }
962
1182
  interface PresentationOptions$1 extends CorePropertiesOptions {
963
1183
  readonly size?: SlideSize;
964
1184
  readonly masters?: readonly MasterDefinition[];
965
1185
  readonly slides?: readonly SlideOptions[];
966
1186
  readonly show?: ShowOptions;
1187
+ readonly view?: ViewPropertiesOptions;
1188
+ readonly includeHandoutMaster?: boolean;
1189
+ readonly includeNotesMaster?: boolean;
1190
+ readonly handoutMasterOptions?: HandoutMasterOptions;
1191
+ readonly notesMasterOptions?: NotesMasterOptions;
1192
+ readonly tableStyles?: import("@office-open/core").TableStyleListOptions;
1193
+ readonly web?: WebPropertiesOptions;
1194
+ readonly print?: PrintPropertiesOptions;
1195
+ readonly htmlPublish?: HtmlPublishPropertiesOptions;
1196
+ readonly serverZoom?: string;
1197
+ readonly firstSlideNum?: number;
1198
+ readonly showSpecialPlsOnTitleSld?: boolean;
1199
+ readonly rtl?: boolean;
1200
+ readonly removePersonalInfoOnSave?: boolean;
1201
+ readonly compatMode?: boolean;
1202
+ readonly strictFirstAndLastChars?: boolean;
1203
+ readonly embedTrueTypeFonts?: boolean;
1204
+ readonly saveSubsetFonts?: boolean;
1205
+ readonly autoCompressPictures?: boolean;
1206
+ readonly bookmarkIdSeed?: number;
1207
+ readonly conformance?: "strict" | "transitional";
1208
+ readonly photoAlbum?: PhotoAlbumOptions;
1209
+ readonly modifyVerifier?: ModifyVerifierOptions;
967
1210
  }
968
1211
  interface LayoutInfo {
969
1212
  readonly key: string;
@@ -978,6 +1221,13 @@ declare class File {
978
1221
  private readonly slideWidthEmus;
979
1222
  private readonly slideHeightEmus;
980
1223
  private readonly masterDefs;
1224
+ private readonly includeHandout;
1225
+ private readonly tableStylesOpts?;
1226
+ private readonly viewOpts?;
1227
+ private readonly handoutMasterOpts?;
1228
+ private readonly notesMasterOpts?;
1229
+ private readonly presPropsFullOpts?;
1230
+ private readonly presAttrOpts?;
981
1231
  private _coreProperties?;
982
1232
  private _appProperties?;
983
1233
  private _contentTypes?;
@@ -1027,6 +1277,9 @@ declare class File {
1027
1277
  get notesSlides(): readonly NotesSlide[];
1028
1278
  get notesSlideIndexMap(): Map<number, number>;
1029
1279
  get notesMasterRelationships(): Relationships;
1280
+ get hasHandoutMaster(): boolean;
1281
+ get handoutMasterOptions(): HandoutMasterOptions | undefined;
1282
+ get notesMasterOptions(): NotesMasterOptions | undefined;
1030
1283
  get commentAuthorList(): CommentAuthorList | undefined;
1031
1284
  get slideCommentLists(): readonly (SlideCommentList | undefined)[];
1032
1285
  private buildComments;
@@ -1109,13 +1362,6 @@ declare class ShapeTree extends XmlComponent {
1109
1362
  constructor(children: readonly XmlComponent[]);
1110
1363
  }
1111
1364
  //#endregion
1112
- //#region src/file/notes-master/notes-master.d.ts
1113
- declare class DefaultNotesMaster extends ImportedXmlComponent {
1114
- private static instance;
1115
- constructor();
1116
- toXml(context: Context): string;
1117
- }
1118
- //#endregion
1119
1365
  //#region src/file/table/table-properties.d.ts
1120
1366
  declare class TableProperties extends BaseXmlComponent {
1121
1367
  private readonly options?;
@@ -1126,10 +1372,142 @@ declare class TableProperties extends BaseXmlComponent {
1126
1372
  readonly firstCol?: boolean;
1127
1373
  readonly lastCol?: boolean;
1128
1374
  readonly bandCol?: boolean;
1375
+ readonly tableStyleId?: string;
1129
1376
  });
1130
1377
  toXml(_context: Context): string;
1131
1378
  }
1132
1379
  //#endregion
1380
+ //#region src/file/pml-elements.d.ts
1381
+ declare const BLINDS = "p:blinds";
1382
+ declare const CHECKER = "p:checker";
1383
+ declare const CIRCLE = "p:circle";
1384
+ declare const COMB = "p:comb";
1385
+ declare const COVER = "p:cover";
1386
+ declare const CUT = "p:cut";
1387
+ declare const DIAMOND = "p:diamond";
1388
+ declare const DISSOLVE = "p:dissolve";
1389
+ declare const FADE = "p:fade";
1390
+ declare const NEWSFLASH = "p:newsflash";
1391
+ declare const PLUS = "p:plus";
1392
+ declare const PULL = "p:pull";
1393
+ declare const PUSH = "p:push";
1394
+ declare const RANDOM = "p:random";
1395
+ declare const RANDOM_BAR = "p:randomBar";
1396
+ declare const SPLIT = "p:split";
1397
+ declare const STRIPS = "p:strips";
1398
+ declare const WEDGE = "p:wedge";
1399
+ declare const WHEEL = "p:wheel";
1400
+ declare const WIPE = "p:wipe";
1401
+ declare const ZOOM = "p:zoom";
1402
+ declare const ST_SND = "p:stSnd";
1403
+ declare const END_SND = "p:endSnd";
1404
+ declare const SND_AC = "p:sndAc";
1405
+ declare const BLD_LST = "p:bldLst";
1406
+ declare const BLD_P = "p:bldP";
1407
+ declare const BLD_DGM = "p:bldDgm";
1408
+ declare const BLD_OLE_CHART = "p:bldOleChart";
1409
+ declare const BLD_GRAPHIC = "p:bldGraphic";
1410
+ declare const BLD_AS_ONE = "p:bldAsOne";
1411
+ declare const BLD_SUB = "p:bldSub";
1412
+ declare const TN = "p:tn";
1413
+ declare const SUB_TN_LST = "p:subTnLst";
1414
+ declare const END_COND_LST = "p:endCondLst";
1415
+ declare const END_SYNC = "p:endSync";
1416
+ declare const TMPL = "p:tmpl";
1417
+ declare const TMPL_LST = "p:tmplLst";
1418
+ declare const TM_PCT = "p:tmPct";
1419
+ declare const EXCL = "p:excl";
1420
+ declare const INK_TGT = "p:inkTgt";
1421
+ declare const SND_TGT = "p:sndTgt";
1422
+ declare const SUB_SP = "p:subSp";
1423
+ declare const GRAPHIC_EL = "p:graphicEl";
1424
+ declare const OLE_CHART_EL = "p:oleChartEl";
1425
+ declare const R_CTR = "p:rCtr";
1426
+ declare const BOOL_VAL = "p:boolVal";
1427
+ declare const INT_VAL = "p:intVal";
1428
+ declare const FLT_VAL = "p:fltVal";
1429
+ declare const STR_VAL = "p:strVal";
1430
+ declare const CLR_VAL = "p:clrVal";
1431
+ declare const FROM = "p:from";
1432
+ declare const RGB = "p:rgb";
1433
+ declare const HSL = "p:hsl";
1434
+ declare const RTN = "p:rtn";
1435
+ declare const BOLD = "p:bold";
1436
+ declare const ITALIC = "p:italic";
1437
+ declare const BOLD_ITALIC = "p:boldItalic";
1438
+ declare const REGULAR = "p:regular";
1439
+ declare const STYLE = "p:style";
1440
+ declare const FONT = "p:font";
1441
+ declare const CONTENT_PART = "p:contentPart";
1442
+ declare const SLD_LST = "p:sldLst";
1443
+ declare const PHOTO_ALBUM = "p:photoAlbum";
1444
+ declare const CONTROL = "p:control";
1445
+ declare const CONTROLS = "p:controls";
1446
+ declare const CUST_DATA = "p:custData";
1447
+ declare const CUST_DATA_LST = "p:custDataLst";
1448
+ declare const CUST_SHOW = "p:custShow";
1449
+ declare const CUST_SHOW_LST = "p:custShowLst";
1450
+ declare const TAG = "p:tag";
1451
+ declare const TAG_LST = "p:tagLst";
1452
+ declare const TAGS = "p:tags";
1453
+ declare const EMBEDDED_FONT = "p:embeddedFont";
1454
+ declare const EMBEDDED_FONT_LST = "p:embeddedFontLst";
1455
+ declare const HTML_PUB_PR = "p:htmlPubPr";
1456
+ declare const WEB_PR = "p:webPr";
1457
+ declare const PRN_PR = "p:prnPr";
1458
+ declare const MODIFY_VERIFIER = "p:modifyVerifier";
1459
+ declare const SMART_TAGS = "p:smartTags";
1460
+ declare const SLD_SYNC_PR = "p:sldSyncPr";
1461
+ declare const NOTES_VIEW_PR = "p:notesViewPr";
1462
+ declare const OUTLINE_VIEW_PR = "p:outlineViewPr";
1463
+ declare const SORTER_VIEW_PR = "p:sorterViewPr";
1464
+ declare const CLR_MRU = "p:clrMru";
1465
+ declare const GUIDE = "p:guide";
1466
+ declare const KINSOKU = "p:kinsoku";
1467
+ declare const PROGRESS = "p:progress";
1468
+ interface SlideSyncPropertiesOptions {
1469
+ readonly serverSlideId?: string;
1470
+ readonly serverSlideModifiedTime?: string;
1471
+ readonly clientInsertedTime?: string;
1472
+ }
1473
+ declare const createSlideSyncProperties: (options?: SlideSyncPropertiesOptions) => XmlComponent;
1474
+ interface OutlineViewPropertiesOptions {
1475
+ readonly showFormatting?: boolean;
1476
+ }
1477
+ declare const createOutlineViewProperties: (options?: OutlineViewPropertiesOptions) => XmlComponent;
1478
+ interface OutlineViewSlideEntryOptions {
1479
+ readonly collapse?: boolean;
1480
+ }
1481
+ declare const createOutlineViewSlideEntry: (options?: OutlineViewSlideEntryOptions) => XmlComponent;
1482
+ interface KinsokuOptions {
1483
+ readonly invalidStartCharacters?: string;
1484
+ readonly invalidEndCharacters?: string;
1485
+ }
1486
+ declare const createKinsoku: (options?: KinsokuOptions) => XmlComponent;
1487
+ interface ExclusiveTimingOptions {
1488
+ readonly previousAction?: "none" | "skipTimed";
1489
+ }
1490
+ declare const createExclusiveTiming: (options?: ExclusiveTimingOptions) => XmlComponent;
1491
+ interface BuildParagraphOptions {
1492
+ readonly build?: "whole" | "allAtOnce" | "p" | "cust";
1493
+ readonly uiExpand?: boolean;
1494
+ }
1495
+ declare const createBuildParagraph: (options?: BuildParagraphOptions) => XmlComponent;
1496
+ interface BuildDiagramOptions {
1497
+ readonly build?: "whole" | "allAtOnce" | "cust" | "sp" | "bg";
1498
+ readonly uiExpand?: boolean;
1499
+ }
1500
+ declare const createBuildDiagram: (options?: BuildDiagramOptions) => XmlComponent;
1501
+ interface BuildOleChartOptions {
1502
+ readonly build?: "allAtOnce" | "series" | "category" | "seriesEl" | "categoryEl";
1503
+ readonly uiExpand?: boolean;
1504
+ }
1505
+ declare const createBuildOleChart: (options?: BuildOleChartOptions) => XmlComponent;
1506
+ interface BuildGraphicOptions {
1507
+ readonly uiExpand?: boolean;
1508
+ }
1509
+ declare const createBuildGraphic: (options?: BuildGraphicOptions) => XmlComponent;
1510
+ //#endregion
1133
1511
  //#region src/export/packer/packer.d.ts
1134
1512
  declare const Packer: import("@office-open/core").Packer<File>;
1135
1513
  //#endregion
@@ -1213,8 +1591,8 @@ declare const patchPresentation: <T extends PatchDocumentOutputType = PatchDocum
1213
1591
  placeholderDelimiters
1214
1592
  }: PatchPresentationOptions<T>) => Promise<OutputByType[T]>;
1215
1593
  declare namespace index_d_exports {
1216
- export { AnimationCalcMode, AnimationClass, AnimationDirection, AnimationOptions, AnimationTrigger, AnimationType, AnimationValueType, AppProperties, AudioFrame, AudioFrameOptions, AudioType, Background, BackgroundOptions, BevelOptions, BevelPresetType, BlipFill, BlipFillConfigOptions, BlipFillMediaData, CellBorderOptions, Chart, ChartCollection, ChartData, ChartOptions, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, ColorSchemeOptions, ColorTransformOptions, CompoundLine, CompressionOptions, ConnectorShape, ConnectorShapeOptions, ContentTypes, CoreGradientFillOptions, CoreOutlineOptions, CoreProperties, CorePropertiesOptions, DateTimeField, DefaultNotesMaster, DefaultSlideLayout, DefaultSlideMaster, DefaultTheme, DrawingTable, EffectListOptions, EffectsOptions, EmphasisType, EndParagraphRunProperties, Field, File, FillOptions, FontSchemeOptions, GlowOptions, GradientStop, GradientStopOptions, GroupShape, GroupShapeOptions, GroupShapeProperties, GroupTransform2D, HeaderFooter, HyperlinkOptions, IGroupTransform2DOptions, IMediaData, IPatch, PresentationOptions as IPresentationXmlOptions, ITransform2DOptions, InputDataType, LayoutDefinition, LayoutPlaceholderOptions, LineCap, LineJoin, LineShape, LineShapeOptions, MasterChild, MasterDefinition, MasterPlaceholderOptions, MasterPlaceholderPosition, Media, MediaAnimationType, MediaDataTransformation, MediaTransformation, NonVisualDrawingProperties, NonVisualPictureProperties, NonVisualShapeProperties, NotesSlide, NotesSlideOptions, OutlineOptions, Packer, PackerOptions, Paragraph, ParagraphOptions, ParagraphProperties, ParagraphPropertiesOptions, PatchDocumentOutputType, PatchPresentationOptions, PatchType, PathAnimationType, PathShadeType, PenAlignment, Picture, PictureOptions, PosterType, PptxDocument, PptxPartRefs, File as Presentation, PresentationOptions$1 as PresentationOptions, PresentationWrapper, PresetDash, PresetGeometry, PresetMaterialType, ReflectionAlignment, ReflectionOptions, RelationshipType, Relationships, RunOptions, RunProperties, RunPropertiesOptions, Scene3DOptions, ShadowOptions, Shape, Shape3DOptions, ShapeOptions, ShapeProperties, ShapePropertiesOptions, ShapeTree, Slide, SlideChild, SlideCommentOptions, SlideHeaderFooterOptions, SlideLayout, SlideLayoutType, SlideMasterOptions, SlideNumberField, SlideOptions, SlideSize, SlideSizePreset, SmartArt, SmartArtOptions, SoftEdgeOptions, StrikeStyle, Table, TableCell, TableCellOptions, TableCellProperties, TableOptions, TableProperties, TableRow, TableRowOptions, Text, TextAlignment, TextBody, TextBodyOptions, TextCapitalization, TextRun, ThemeOptions, TileFlipMode, Transform2D, Transition, TransitionDirection, TransitionOptions, TransitionType, TreeNode, UnderlineStyle, VerticalAlignment, VideoFrame, VideoFrameOptions, VideoType, ViewWrapper, buildFill, coerceChild, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, createBevel, createBottomBevel, createColorElement, createColorTransforms, createEffectList, createGradientFill, createGradientStop, createOutline, createOutlineCompat, createPptxEffectList, createScene3D, createShape3D, createTransformation, extractBlipFillMedia, hashedId, parseArchive, parsePptx, parsePresentation, patchPresentation, percentToTHousandths, uniqueId, uniqueNumericIdCreator, uniqueUuid };
1594
+ export { AnimationCalcMode, AnimationClass, AnimationDirection, AnimationOptions, AnimationTrigger, AnimationType, AnimationValueType, AppProperties, AudioFrame, AudioFrameOptions, AudioType, BLD_AS_ONE, BLD_DGM, BLD_GRAPHIC, BLD_LST, BLD_OLE_CHART, BLD_P, BLD_SUB, BLINDS, BOLD, BOLD_ITALIC, BOOL_VAL, Background, BackgroundOptions, BevelOptions, BevelPresetType, BlipFill, BlipFillConfigOptions, BlipFillMediaData, BuildDiagramOptions, BuildGraphicOptions, BuildOleChartOptions, BuildParagraphOptions, CHECKER, CIRCLE, CLR_MRU, CLR_VAL, COMB, CONTENT_PART, CONTROL, CONTROLS, COVER, CUST_DATA, CUST_DATA_LST, CUST_SHOW, CUST_SHOW_LST, CUT, CellBorderOptions, Chart, ChartCollection, ChartData, ChartOptions, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, ColorSchemeOptions, ColorTransformOptions, CompoundLine, CompressionOptions, ConnectorShape, ConnectorShapeOptions, ContentTypes, CoreGradientFillOptions, CoreOutlineOptions, CoreProperties, CorePropertiesOptions, DIAMOND, DISSOLVE, DateTimeField, DefaultHandoutMaster, DefaultNotesMaster, DefaultSlideLayout, DefaultSlideMaster, DefaultTheme, DrawingTable, EMBEDDED_FONT, EMBEDDED_FONT_LST, END_COND_LST, END_SND, END_SYNC, EXCL, EffectListOptions, EffectsOptions, EmphasisType, EndParagraphRunProperties, ExclusiveTimingOptions, FADE, FLT_VAL, FONT, FROM, Field, File, FillOptions, FontSchemeOptions, GRAPHIC_EL, GUIDE, GlowOptions, GradientStop, GradientStopOptions, GroupShape, GroupShapeOptions, GroupShapeProperties, GroupTransform2D, HSL, HTML_PUB_PR, HeaderFooter, HyperlinkOptions, IGroupTransform2DOptions, IMediaData, INK_TGT, INT_VAL, IPatch, PresentationOptions as IPresentationXmlOptions, ITALIC, ITransform2DOptions, InputDataType, KINSOKU, KinsokuOptions, LayoutDefinition, LayoutPlaceholderOptions, LineCap, LineJoin, LineShape, LineShapeOptions, MODIFY_VERIFIER, MasterChild, MasterDefinition, MasterPlaceholderOptions, MasterPlaceholderPosition, Media, MediaAnimationType, MediaDataTransformation, MediaTransformation, NEWSFLASH, NOTES_VIEW_PR, NonVisualDrawingProperties, NonVisualPictureProperties, NonVisualShapeProperties, NotesSlide, NotesSlideOptions, OLE_CHART_EL, OUTLINE_VIEW_PR, OutlineOptions, OutlineViewPropertiesOptions, OutlineViewSlideEntryOptions, PHOTO_ALBUM, PLUS, PRN_PR, PROGRESS, PULL, PUSH, Packer, PackerOptions, Paragraph, ParagraphOptions, ParagraphProperties, ParagraphPropertiesOptions, PatchDocumentOutputType, PatchPresentationOptions, PatchType, PathAnimationType, PathShadeType, PenAlignment, Picture, PictureOptions, PosterType, PptxDocument, PptxPartRefs, File as Presentation, PresentationOptions$1 as PresentationOptions, PresentationWrapper, PresetDash, PresetGeometry, PresetMaterialType, RANDOM, RANDOM_BAR, REGULAR, RGB, RTN, R_CTR, ReflectionAlignment, ReflectionOptions, RelationshipType, Relationships, RunOptions, RunProperties, RunPropertiesOptions, SLD_LST, SLD_SYNC_PR, SMART_TAGS, SND_AC, SND_TGT, SORTER_VIEW_PR, SPLIT, STRIPS, STR_VAL, STYLE, ST_SND, SUB_SP, SUB_TN_LST, Scene3DOptions, ShadowOptions, Shape, Shape3DOptions, ShapeOptions, ShapeProperties, ShapePropertiesOptions, ShapeTree, ShowOptions, Slide, SlideChild, SlideCommentOptions, SlideHeaderFooterOptions, SlideLayout, SlideLayoutType, SlideMasterOptions, SlideNumberField, SlideOptions, SlideSize, SlideSizePreset, SlideSyncPropertiesOptions, SmartArt, SmartArtOptions, SoftEdgeOptions, StrikeStyle, TAG, TAGS, TAG_LST, TMPL, TMPL_LST, TM_PCT, TN, Table, TableCell, TableCellOptions, TableCellProperties, TableOptions, TableProperties, TableRow, TableRowOptions, Text, TextAlignment, TextBody, TextBodyOptions, TextCapitalization, TextRun, ThemeOptions, TileFlipMode, Transform2D, Transition, TransitionDirection, TransitionOptions, TransitionType, TreeNode, UnderlineStyle, VerticalAlignment, VideoFrame, VideoFrameOptions, VideoType, ViewPropertiesOptions, ViewWrapper, WEB_PR, WEDGE, WHEEL, WIPE, ZOOM, buildFill, coerceChild, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, createBevel, createBottomBevel, createBuildDiagram, createBuildGraphic, createBuildOleChart, createBuildParagraph, createColorElement, createColorTransforms, createEffectList, createExclusiveTiming, createGradientFill, createGradientStop, createKinsoku, createOutline, createOutlineCompat, createOutlineViewProperties, createOutlineViewSlideEntry, createPptxEffectList, createScene3D, createShape3D, createSlideSyncProperties, createTransformation, extractBlipFillMedia, hashedId, parseArchive, parsePptx, parsePresentation, patchPresentation, percentToTHousandths, uniqueId, uniqueNumericIdCreator, uniqueUuid };
1217
1595
  }
1218
1596
  //#endregion
1219
- export { type AnimationCalcMode, type AnimationClass, type AnimationDirection, type AnimationOptions, type AnimationTrigger, type AnimationType, type AnimationValueType, AppProperties, AudioFrame, type AudioFrameOptions, type AudioType, Background, type BackgroundOptions, type BevelOptions, BevelPresetType, BlipFill, type BlipFillConfigOptions, type BlipFillMediaData, type CellBorderOptions, Chart, ChartCollection, type ChartData, type ChartOptions, type ChartSeriesData, ChartSpace, type ChartSpaceOptions, type ChartType, type ColorSchemeOptions, type ColorTransformOptions, CompoundLine, type CompressionOptions, ConnectorShape, type ConnectorShapeOptions, ContentTypes, type CoreGradientFillOptions, type CoreOutlineOptions, CoreProperties, type CorePropertiesOptions, DateTimeField, DefaultNotesMaster, DefaultSlideLayout, DefaultSlideMaster, DefaultTheme, DrawingTable, type EffectListOptions, type EffectsOptions, type EmphasisType, EndParagraphRunProperties, Field, File, File as Presentation, type FillOptions, type FontSchemeOptions, type GlowOptions, type GradientStop, type GradientStopOptions, GroupShape, type GroupShapeOptions, GroupShapeProperties, GroupTransform2D, HeaderFooter, type HyperlinkOptions, type IGroupTransform2DOptions, type IMediaData, IPatch, type PresentationOptions as IPresentationXmlOptions, type ITransform2DOptions, InputDataType, type LayoutDefinition, type LayoutPlaceholderOptions, LineCap, LineJoin, LineShape, type LineShapeOptions, type MasterChild, type MasterDefinition, type MasterPlaceholderOptions, type MasterPlaceholderPosition, Media, type MediaAnimationType, type MediaDataTransformation, type MediaTransformation, NonVisualDrawingProperties, NonVisualPictureProperties, NonVisualShapeProperties, NotesSlide, type NotesSlideOptions, type OutlineOptions, Packer, type PackerOptions, Paragraph, type ParagraphOptions, ParagraphProperties, type ParagraphPropertiesOptions, PatchDocumentOutputType, PatchPresentationOptions, PatchType, type PathAnimationType, PathShadeType, PenAlignment, Picture, type PictureOptions, type PosterType, PptxDocument, PptxPartRefs, type PresentationOptions$1 as PresentationOptions, PresentationWrapper, PresetDash, PresetGeometry, PresetMaterialType, ReflectionAlignment, type ReflectionOptions, type RelationshipType, Relationships, type RunOptions, RunProperties, type RunPropertiesOptions, type Scene3DOptions, type ShadowOptions, Shape, type Shape3DOptions, type ShapeOptions, ShapeProperties, type ShapePropertiesOptions, ShapeTree, Slide, type SlideChild, type SlideCommentOptions, type SlideHeaderFooterOptions, SlideLayout, type SlideLayoutType, type SlideMasterOptions, SlideNumberField, type SlideOptions, type SlideSize, SlideSizePreset, SmartArt, type SmartArtOptions, type SoftEdgeOptions, StrikeStyle, Table, TableCell, type TableCellOptions, TableCellProperties, type TableOptions, TableProperties, TableRow, type TableRowOptions, Text, type TextAlignment, TextBody, type TextBodyOptions, TextCapitalization, TextRun, type ThemeOptions, TileFlipMode, Transform2D, Transition, type TransitionDirection, type TransitionOptions, type TransitionType, type TreeNode, UnderlineStyle, type VerticalAlignment, VideoFrame, type VideoFrameOptions, type VideoType, type ViewWrapper, buildFill, coerceChild, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, createBevel, createBottomBevel, createColorElement, createColorTransforms, createEffectList, createGradientFill, createGradientStop, createOutline, createOutlineCompat, createPptxEffectList, createScene3D, createShape3D, createTransformation, extractBlipFillMedia, hashedId, parseArchive, parsePptx, parsePresentation, patchPresentation, percentToTHousandths, uniqueId, uniqueNumericIdCreator, uniqueUuid };
1597
+ export { type AnimationCalcMode, type AnimationClass, type AnimationDirection, type AnimationOptions, type AnimationTrigger, type AnimationType, type AnimationValueType, AppProperties, AudioFrame, type AudioFrameOptions, type AudioType, BLD_AS_ONE, BLD_DGM, BLD_GRAPHIC, BLD_LST, BLD_OLE_CHART, BLD_P, BLD_SUB, BLINDS, BOLD, BOLD_ITALIC, BOOL_VAL, Background, type BackgroundOptions, type BevelOptions, BevelPresetType, BlipFill, type BlipFillConfigOptions, type BlipFillMediaData, BuildDiagramOptions, BuildGraphicOptions, BuildOleChartOptions, BuildParagraphOptions, CHECKER, CIRCLE, CLR_MRU, CLR_VAL, COMB, CONTENT_PART, CONTROL, CONTROLS, COVER, CUST_DATA, CUST_DATA_LST, CUST_SHOW, CUST_SHOW_LST, CUT, type CellBorderOptions, Chart, ChartCollection, type ChartData, type ChartOptions, type ChartSeriesData, ChartSpace, type ChartSpaceOptions, type ChartType, type ColorSchemeOptions, type ColorTransformOptions, CompoundLine, type CompressionOptions, ConnectorShape, type ConnectorShapeOptions, ContentTypes, type CoreGradientFillOptions, type CoreOutlineOptions, CoreProperties, type CorePropertiesOptions, DIAMOND, DISSOLVE, DateTimeField, DefaultHandoutMaster, DefaultNotesMaster, DefaultSlideLayout, DefaultSlideMaster, DefaultTheme, DrawingTable, EMBEDDED_FONT, EMBEDDED_FONT_LST, END_COND_LST, END_SND, END_SYNC, EXCL, type EffectListOptions, type EffectsOptions, type EmphasisType, EndParagraphRunProperties, ExclusiveTimingOptions, FADE, FLT_VAL, FONT, FROM, Field, File, File as Presentation, type FillOptions, type FontSchemeOptions, GRAPHIC_EL, GUIDE, type GlowOptions, type GradientStop, type GradientStopOptions, GroupShape, type GroupShapeOptions, GroupShapeProperties, GroupTransform2D, HSL, HTML_PUB_PR, HeaderFooter, type HyperlinkOptions, type IGroupTransform2DOptions, type IMediaData, INK_TGT, INT_VAL, IPatch, type PresentationOptions as IPresentationXmlOptions, ITALIC, type ITransform2DOptions, InputDataType, KINSOKU, KinsokuOptions, type LayoutDefinition, type LayoutPlaceholderOptions, LineCap, LineJoin, LineShape, type LineShapeOptions, MODIFY_VERIFIER, type MasterChild, type MasterDefinition, type MasterPlaceholderOptions, type MasterPlaceholderPosition, Media, type MediaAnimationType, type MediaDataTransformation, type MediaTransformation, NEWSFLASH, NOTES_VIEW_PR, NonVisualDrawingProperties, NonVisualPictureProperties, NonVisualShapeProperties, NotesSlide, type NotesSlideOptions, OLE_CHART_EL, OUTLINE_VIEW_PR, type OutlineOptions, OutlineViewPropertiesOptions, OutlineViewSlideEntryOptions, PHOTO_ALBUM, PLUS, PRN_PR, PROGRESS, PULL, PUSH, Packer, type PackerOptions, Paragraph, type ParagraphOptions, ParagraphProperties, type ParagraphPropertiesOptions, PatchDocumentOutputType, PatchPresentationOptions, PatchType, type PathAnimationType, PathShadeType, PenAlignment, Picture, type PictureOptions, type PosterType, PptxDocument, PptxPartRefs, type PresentationOptions$1 as PresentationOptions, PresentationWrapper, PresetDash, PresetGeometry, PresetMaterialType, RANDOM, RANDOM_BAR, REGULAR, RGB, RTN, R_CTR, ReflectionAlignment, type ReflectionOptions, type RelationshipType, Relationships, type RunOptions, RunProperties, type RunPropertiesOptions, SLD_LST, SLD_SYNC_PR, SMART_TAGS, SND_AC, SND_TGT, SORTER_VIEW_PR, SPLIT, STRIPS, STR_VAL, STYLE, ST_SND, SUB_SP, SUB_TN_LST, type Scene3DOptions, type ShadowOptions, Shape, type Shape3DOptions, type ShapeOptions, ShapeProperties, type ShapePropertiesOptions, ShapeTree, type ShowOptions, Slide, type SlideChild, type SlideCommentOptions, type SlideHeaderFooterOptions, SlideLayout, type SlideLayoutType, type SlideMasterOptions, SlideNumberField, type SlideOptions, type SlideSize, SlideSizePreset, SlideSyncPropertiesOptions, SmartArt, type SmartArtOptions, type SoftEdgeOptions, StrikeStyle, TAG, TAGS, TAG_LST, TMPL, TMPL_LST, TM_PCT, TN, Table, TableCell, type TableCellOptions, TableCellProperties, type TableOptions, TableProperties, TableRow, type TableRowOptions, Text, type TextAlignment, TextBody, type TextBodyOptions, TextCapitalization, TextRun, type ThemeOptions, TileFlipMode, Transform2D, Transition, type TransitionDirection, type TransitionOptions, type TransitionType, type TreeNode, UnderlineStyle, type VerticalAlignment, VideoFrame, type VideoFrameOptions, type VideoType, type ViewPropertiesOptions, type ViewWrapper, WEB_PR, WEDGE, WHEEL, WIPE, ZOOM, buildFill, coerceChild, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, createBevel, createBottomBevel, createBuildDiagram, createBuildGraphic, createBuildOleChart, createBuildParagraph, createColorElement, createColorTransforms, createEffectList, createExclusiveTiming, createGradientFill, createGradientStop, createKinsoku, createOutline, createOutlineCompat, createOutlineViewProperties, createOutlineViewSlideEntry, createPptxEffectList, createScene3D, createShape3D, createSlideSyncProperties, createTransformation, extractBlipFillMedia, hashedId, parseArchive, parsePptx, parsePresentation, patchPresentation, percentToTHousandths, uniqueId, uniqueNumericIdCreator, uniqueUuid };
1220
1598
  //# sourceMappingURL=index.d.mts.map