@types/office-js 1.0.410 → 1.0.411

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.
office-js/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for office-js (https://github.com/OfficeD
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Wed, 07 Aug 2024 17:36:17 GMT
11
+ * Last updated: Thu, 08 Aug 2024 16:08:15 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
office-js/index.d.ts CHANGED
@@ -114406,12 +114406,12 @@ declare namespace PowerPoint {
114406
114406
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
114407
114407
  context: RequestContext;
114408
114408
  /**
114409
- * Create a new instance of PowerPoint.Application object
114409
+ * Create a new instance of the `PowerPoint.Application` object.
114410
114410
  */
114411
114411
  static newObject(context: OfficeExtension.ClientRequestContext): PowerPoint.Application;
114412
114412
  /**
114413
114413
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
114414
- * Whereas the original PowerPoint.Application object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ApplicationData`) that contains shallow copies of any loaded child properties from the original object.
114414
+ * Whereas the original `PowerPoint.Application` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ApplicationData`) that contains shallow copies of any loaded child properties from the original object.
114415
114415
  */
114416
114416
  toJSON(): {
114417
114417
  [key: string]: string;
@@ -114528,7 +114528,7 @@ declare namespace PowerPoint {
114528
114528
  }): PowerPoint.Presentation;
114529
114529
  /**
114530
114530
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
114531
- * Whereas the original PowerPoint.Presentation object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.PresentationData`) that contains shallow copies of any loaded child properties from the original object.
114531
+ * Whereas the original `PowerPoint.Presentation` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.PresentationData`) that contains shallow copies of any loaded child properties from the original object.
114532
114532
  */
114533
114533
  toJSON(): PowerPoint.Interfaces.PresentationData;
114534
114534
  }
@@ -116164,7 +116164,7 @@ declare namespace PowerPoint {
116164
116164
  }): PowerPoint.SlideLayout;
116165
116165
  /**
116166
116166
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
116167
- * Whereas the original PowerPoint.SlideLayout object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.SlideLayoutData`) that contains shallow copies of any loaded child properties from the original object.
116167
+ * Whereas the original `PowerPoint.SlideLayout` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.SlideLayoutData`) that contains shallow copies of any loaded child properties from the original object.
116168
116168
  */
116169
116169
  toJSON(): PowerPoint.Interfaces.SlideLayoutData;
116170
116170
  }
@@ -116302,7 +116302,7 @@ declare namespace PowerPoint {
116302
116302
  }): PowerPoint.SlideMaster;
116303
116303
  /**
116304
116304
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
116305
- * Whereas the original PowerPoint.SlideMaster object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.SlideMasterData`) that contains shallow copies of any loaded child properties from the original object.
116305
+ * Whereas the original `PowerPoint.SlideMaster` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.SlideMasterData`) that contains shallow copies of any loaded child properties from the original object.
116306
116306
  */
116307
116307
  toJSON(): PowerPoint.Interfaces.SlideMasterData;
116308
116308
  }
@@ -116352,7 +116352,7 @@ declare namespace PowerPoint {
116352
116352
  }): PowerPoint.Tag;
116353
116353
  /**
116354
116354
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
116355
- * Whereas the original PowerPoint.Tag object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.TagData`) that contains shallow copies of any loaded child properties from the original object.
116355
+ * Whereas the original `PowerPoint.Tag` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.TagData`) that contains shallow copies of any loaded child properties from the original object.
116356
116356
  */
116357
116357
  toJSON(): PowerPoint.Interfaces.TagData;
116358
116358
  }
@@ -116368,22 +116368,22 @@ declare namespace PowerPoint {
116368
116368
  /** Gets the loaded child items in this collection. */
116369
116369
  readonly items: PowerPoint.Tag[];
116370
116370
  /**
116371
- * Adds a new tag at the end of the collection. If the key already exists in the collection, the value of the existing tag will be replaced with the given `value`.
116371
+ * Adds a new tag at the end of the collection. If the `key` already exists in the collection, the value of the existing tag will be replaced with the given `value`.
116372
116372
  *
116373
116373
  * @remarks
116374
116374
  * [Api set: PowerPointApi 1.3]
116375
116375
  *
116376
- * @param key The unique ID of a tag, which is unique within this `TagCollection`. The key string is capitalized when saved in the document.
116376
+ * @param key The unique ID of a tag, which is unique within this `TagCollection`. 'key' parameter is case-insensitive, but it is always capitalized when saved in the document.
116377
116377
  * @param value The value of the tag.
116378
116378
  */
116379
116379
  add(key: string, value: string): void;
116380
116380
  /**
116381
- * Deletes the tag with the given key in this collection. Does nothing if the key does not exist.
116381
+ * Deletes the tag with the given `key` in this collection. Does nothing if the `key` does not exist.
116382
116382
  *
116383
116383
  * @remarks
116384
116384
  * [Api set: PowerPointApi 1.3]
116385
116385
  *
116386
- * @param key The unique ID of a tag, which is unique within this `TagCollection`. This parameter is case-insensitive.
116386
+ * @param key The unique ID of a tag, which is unique within this `TagCollection`. `key` parameter is case-insensitive.
116387
116387
  */
116388
116388
  delete(key: string): void;
116389
116389
  /**
@@ -116400,7 +116400,7 @@ declare namespace PowerPoint {
116400
116400
  * @remarks
116401
116401
  * [Api set: PowerPointApi 1.3]
116402
116402
  *
116403
- * @param key The ID of the tag. The ID is case-sensitive and must be capitalized.
116403
+ * @param key The ID of the tag.
116404
116404
  * @returns The tag with the unique ID. If such a tag does not exist, an error is thrown.
116405
116405
  */
116406
116406
  getItem(key: string): PowerPoint.Tag;
@@ -116420,7 +116420,7 @@ declare namespace PowerPoint {
116420
116420
  * @remarks
116421
116421
  * [Api set: PowerPointApi 1.3]
116422
116422
  *
116423
- * @param key The ID of the tag. The ID is case-sensitive and must be capitalized.
116423
+ * @param key The ID of the tag.
116424
116424
  * @returns The tag with the unique ID. If such a tag does not exist, an object with an `isNullObject` property set to true is returned.
116425
116425
  */
116426
116426
  getItemOrNullObject(key: string): PowerPoint.Tag;
@@ -116531,7 +116531,7 @@ declare namespace PowerPoint {
116531
116531
  }): PowerPoint.Slide;
116532
116532
  /**
116533
116533
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
116534
- * Whereas the original PowerPoint.Slide object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.SlideData`) that contains shallow copies of any loaded child properties from the original object.
116534
+ * Whereas the original `PowerPoint.Slide` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.SlideData`) that contains shallow copies of any loaded child properties from the original object.
116535
116535
  */
116536
116536
  toJSON(): PowerPoint.Interfaces.SlideData;
116537
116537
  }
@@ -116648,7 +116648,7 @@ declare namespace PowerPoint {
116648
116648
  }): PowerPoint.ShapeFill;
116649
116649
  /**
116650
116650
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
116651
- * Whereas the original PowerPoint.ShapeFill object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ShapeFillData`) that contains shallow copies of any loaded child properties from the original object.
116651
+ * Whereas the original `PowerPoint.ShapeFill` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ShapeFillData`) that contains shallow copies of any loaded child properties from the original object.
116652
116652
  */
116653
116653
  toJSON(): PowerPoint.Interfaces.ShapeFillData;
116654
116654
  }
@@ -116764,7 +116764,7 @@ declare namespace PowerPoint {
116764
116764
  }): PowerPoint.ShapeLineFormat;
116765
116765
  /**
116766
116766
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
116767
- * Whereas the original PowerPoint.ShapeLineFormat object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ShapeLineFormatData`) that contains shallow copies of any loaded child properties from the original object.
116767
+ * Whereas the original `PowerPoint.ShapeLineFormat` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ShapeLineFormatData`) that contains shallow copies of any loaded child properties from the original object.
116768
116768
  */
116769
116769
  toJSON(): PowerPoint.Interfaces.ShapeLineFormatData;
116770
116770
  }
@@ -116883,7 +116883,7 @@ declare namespace PowerPoint {
116883
116883
  }): PowerPoint.BulletFormat;
116884
116884
  /**
116885
116885
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
116886
- * Whereas the original PowerPoint.BulletFormat object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.BulletFormatData`) that contains shallow copies of any loaded child properties from the original object.
116886
+ * Whereas the original `PowerPoint.BulletFormat` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.BulletFormatData`) that contains shallow copies of any loaded child properties from the original object.
116887
116887
  */
116888
116888
  toJSON(): PowerPoint.Interfaces.BulletFormatData;
116889
116889
  }
@@ -116933,7 +116933,7 @@ declare namespace PowerPoint {
116933
116933
  }): PowerPoint.ParagraphFormat;
116934
116934
  /**
116935
116935
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
116936
- * Whereas the original PowerPoint.ParagraphFormat object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ParagraphFormatData`) that contains shallow copies of any loaded child properties from the original object.
116936
+ * Whereas the original `PowerPoint.ParagraphFormat` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ParagraphFormatData`) that contains shallow copies of any loaded child properties from the original object.
116937
116937
  */
116938
116938
  toJSON(): PowerPoint.Interfaces.ParagraphFormatData;
116939
116939
  }
@@ -117011,7 +117011,7 @@ declare namespace PowerPoint {
117011
117011
  }): PowerPoint.ShapeFont;
117012
117012
  /**
117013
117013
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
117014
- * Whereas the original PowerPoint.ShapeFont object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ShapeFontData`) that contains shallow copies of any loaded child properties from the original object.
117014
+ * Whereas the original `PowerPoint.ShapeFont` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ShapeFontData`) that contains shallow copies of any loaded child properties from the original object.
117015
117015
  */
117016
117016
  toJSON(): PowerPoint.Interfaces.ShapeFontData;
117017
117017
  }
@@ -117108,7 +117108,7 @@ declare namespace PowerPoint {
117108
117108
  }): PowerPoint.TextRange;
117109
117109
  /**
117110
117110
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
117111
- * Whereas the original PowerPoint.TextRange object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.TextRangeData`) that contains shallow copies of any loaded child properties from the original object.
117111
+ * Whereas the original `PowerPoint.TextRange` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.TextRangeData`) that contains shallow copies of any loaded child properties from the original object.
117112
117112
  */
117113
117113
  toJSON(): PowerPoint.Interfaces.TextRangeData;
117114
117114
  }
@@ -117221,7 +117221,7 @@ declare namespace PowerPoint {
117221
117221
  }): PowerPoint.TextFrame;
117222
117222
  /**
117223
117223
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
117224
- * Whereas the original PowerPoint.TextFrame object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.TextFrameData`) that contains shallow copies of any loaded child properties from the original object.
117224
+ * Whereas the original `PowerPoint.TextFrame` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.TextFrameData`) that contains shallow copies of any loaded child properties from the original object.
117225
117225
  */
117226
117226
  toJSON(): PowerPoint.Interfaces.TextFrameData;
117227
117227
  }
@@ -117383,7 +117383,7 @@ declare namespace PowerPoint {
117383
117383
  }): PowerPoint.Shape;
117384
117384
  /**
117385
117385
  * Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
117386
- * Whereas the original PowerPoint.Shape object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ShapeData`) that contains shallow copies of any loaded child properties from the original object.
117386
+ * Whereas the original `PowerPoint.Shape` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `PowerPoint.Interfaces.ShapeData`) that contains shallow copies of any loaded child properties from the original object.
117387
117387
  */
117388
117388
  toJSON(): PowerPoint.Interfaces.ShapeData;
117389
117389
  }
@@ -117766,15 +117766,15 @@ declare namespace PowerPoint {
117766
117766
  */
117767
117767
  $skip?: number;
117768
117768
  }
117769
- /** An interface for updating data on the ShapeCollection object, for use in `shapeCollection.set({ ... })`. */
117769
+ /** An interface for updating data on the `ShapeCollection` object, for use in `shapeCollection.set({ ... })`. */
117770
117770
  interface ShapeCollectionUpdateData {
117771
117771
  items?: PowerPoint.Interfaces.ShapeData[];
117772
117772
  }
117773
- /** An interface for updating data on the SlideLayoutCollection object, for use in `slideLayoutCollection.set({ ... })`. */
117773
+ /** An interface for updating data on the `SlideLayoutCollection` object, for use in `slideLayoutCollection.set({ ... })`. */
117774
117774
  interface SlideLayoutCollectionUpdateData {
117775
117775
  items?: PowerPoint.Interfaces.SlideLayoutData[];
117776
117776
  }
117777
- /** An interface for updating data on the Tag object, for use in `tag.set({ ... })`. */
117777
+ /** An interface for updating data on the `Tag` object, for use in `tag.set({ ... })`. */
117778
117778
  interface TagUpdateData {
117779
117779
  /**
117780
117780
  * Gets the value of the tag.
@@ -117784,11 +117784,11 @@ declare namespace PowerPoint {
117784
117784
  */
117785
117785
  value?: string;
117786
117786
  }
117787
- /** An interface for updating data on the TagCollection object, for use in `tagCollection.set({ ... })`. */
117787
+ /** An interface for updating data on the `TagCollection` object, for use in `tagCollection.set({ ... })`. */
117788
117788
  interface TagCollectionUpdateData {
117789
117789
  items?: PowerPoint.Interfaces.TagData[];
117790
117790
  }
117791
- /** An interface for updating data on the ShapeFill object, for use in `shapeFill.set({ ... })`. */
117791
+ /** An interface for updating data on the `ShapeFill` object, for use in `shapeFill.set({ ... })`. */
117792
117792
  interface ShapeFillUpdateData {
117793
117793
  /**
117794
117794
  * Represents the shape fill foreground color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
@@ -117805,7 +117805,7 @@ declare namespace PowerPoint {
117805
117805
  */
117806
117806
  transparency?: number;
117807
117807
  }
117808
- /** An interface for updating data on the ShapeLineFormat object, for use in `shapeLineFormat.set({ ... })`. */
117808
+ /** An interface for updating data on the `ShapeLineFormat` object, for use in `shapeLineFormat.set({ ... })`. */
117809
117809
  interface ShapeLineFormatUpdateData {
117810
117810
  /**
117811
117811
  * Represents the line color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
@@ -117850,7 +117850,7 @@ declare namespace PowerPoint {
117850
117850
  */
117851
117851
  weight?: number;
117852
117852
  }
117853
- /** An interface for updating data on the BulletFormat object, for use in `bulletFormat.set({ ... })`. */
117853
+ /** An interface for updating data on the `BulletFormat` object, for use in `bulletFormat.set({ ... })`. */
117854
117854
  interface BulletFormatUpdateData {
117855
117855
  /**
117856
117856
  * Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
@@ -117860,7 +117860,7 @@ declare namespace PowerPoint {
117860
117860
  */
117861
117861
  visible?: boolean;
117862
117862
  }
117863
- /** An interface for updating data on the ParagraphFormat object, for use in `paragraphFormat.set({ ... })`. */
117863
+ /** An interface for updating data on the `ParagraphFormat` object, for use in `paragraphFormat.set({ ... })`. */
117864
117864
  interface ParagraphFormatUpdateData {
117865
117865
  /**
117866
117866
  * Represents the horizontal alignment of the paragraph. Returns 'null' if the 'TextRange' includes text fragments with different horizontal alignment values. See {@link PowerPoint.ParagraphHorizontalAlignment} for details.
@@ -117870,7 +117870,7 @@ declare namespace PowerPoint {
117870
117870
  */
117871
117871
  horizontalAlignment?: PowerPoint.ParagraphHorizontalAlignment | "Left" | "Center" | "Right" | "Justify" | "JustifyLow" | "Distributed" | "ThaiDistributed";
117872
117872
  }
117873
- /** An interface for updating data on the ShapeFont object, for use in `shapeFont.set({ ... })`. */
117873
+ /** An interface for updating data on the `ShapeFont` object, for use in `shapeFont.set({ ... })`. */
117874
117874
  interface ShapeFontUpdateData {
117875
117875
  /**
117876
117876
  * Represents the bold status of font. Returns `null` if the `TextRange` includes both bold and non-bold text fragments.
@@ -117915,7 +117915,7 @@ declare namespace PowerPoint {
117915
117915
  */
117916
117916
  underline?: PowerPoint.ShapeFontUnderlineStyle | "None" | "Single" | "Double" | "Heavy" | "Dotted" | "DottedHeavy" | "Dash" | "DashHeavy" | "DashLong" | "DashLongHeavy" | "DotDash" | "DotDashHeavy" | "DotDotDash" | "DotDotDashHeavy" | "Wavy" | "WavyHeavy" | "WavyDouble";
117917
117917
  }
117918
- /** An interface for updating data on the TextRange object, for use in `textRange.set({ ... })`. */
117918
+ /** An interface for updating data on the `TextRange` object, for use in `textRange.set({ ... })`. */
117919
117919
  interface TextRangeUpdateData {
117920
117920
  /**
117921
117921
  * Gets or sets the length of the range that this `TextRange` represents.
@@ -117941,7 +117941,7 @@ declare namespace PowerPoint {
117941
117941
  */
117942
117942
  text?: string;
117943
117943
  }
117944
- /** An interface for updating data on the TextFrame object, for use in `textFrame.set({ ... })`. */
117944
+ /** An interface for updating data on the `TextFrame` object, for use in `textFrame.set({ ... })`. */
117945
117945
  interface TextFrameUpdateData {
117946
117946
  /**
117947
117947
  * The automatic sizing settings for the text frame. A text frame can be set to automatically fit the text to the text frame, to automatically fit the text frame to the text, or not perform any automatic sizing.
@@ -117993,7 +117993,7 @@ declare namespace PowerPoint {
117993
117993
  */
117994
117994
  wordWrap?: boolean;
117995
117995
  }
117996
- /** An interface for updating data on the Shape object, for use in `shape.set({ ... })`. */
117996
+ /** An interface for updating data on the `Shape` object, for use in `shape.set({ ... })`. */
117997
117997
  interface ShapeUpdateData {
117998
117998
  /**
117999
117999
  * Specifies the height, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
@@ -118031,19 +118031,19 @@ declare namespace PowerPoint {
118031
118031
  */
118032
118032
  width?: number;
118033
118033
  }
118034
- /** An interface for updating data on the ShapeScopedCollection object, for use in `shapeScopedCollection.set({ ... })`. */
118034
+ /** An interface for updating data on the `ShapeScopedCollection` object, for use in `shapeScopedCollection.set({ ... })`. */
118035
118035
  interface ShapeScopedCollectionUpdateData {
118036
118036
  items?: PowerPoint.Interfaces.ShapeData[];
118037
118037
  }
118038
- /** An interface for updating data on the SlideCollection object, for use in `slideCollection.set({ ... })`. */
118038
+ /** An interface for updating data on the `SlideCollection` object, for use in `slideCollection.set({ ... })`. */
118039
118039
  interface SlideCollectionUpdateData {
118040
118040
  items?: PowerPoint.Interfaces.SlideData[];
118041
118041
  }
118042
- /** An interface for updating data on the SlideScopedCollection object, for use in `slideScopedCollection.set({ ... })`. */
118042
+ /** An interface for updating data on the `SlideScopedCollection` object, for use in `slideScopedCollection.set({ ... })`. */
118043
118043
  interface SlideScopedCollectionUpdateData {
118044
118044
  items?: PowerPoint.Interfaces.SlideData[];
118045
118045
  }
118046
- /** An interface for updating data on the SlideMasterCollection object, for use in `slideMasterCollection.set({ ... })`. */
118046
+ /** An interface for updating data on the `SlideMasterCollection` object, for use in `slideMasterCollection.set({ ... })`. */
118047
118047
  interface SlideMasterCollectionUpdateData {
118048
118048
  items?: PowerPoint.Interfaces.SlideMasterData[];
118049
118049
  }
@@ -118424,7 +118424,7 @@ declare namespace PowerPoint {
118424
118424
  */
118425
118425
  interface PresentationLoadOptions {
118426
118426
  /**
118427
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118427
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118428
118428
  */
118429
118429
  $all?: boolean;
118430
118430
  /**
@@ -118444,7 +118444,7 @@ declare namespace PowerPoint {
118444
118444
  */
118445
118445
  interface ShapeCollectionLoadOptions {
118446
118446
  /**
118447
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118447
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118448
118448
  */
118449
118449
  $all?: boolean;
118450
118450
  /**
@@ -118526,7 +118526,7 @@ declare namespace PowerPoint {
118526
118526
  */
118527
118527
  interface SlideLayoutLoadOptions {
118528
118528
  /**
118529
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118529
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118530
118530
  */
118531
118531
  $all?: boolean;
118532
118532
  /**
@@ -118552,7 +118552,7 @@ declare namespace PowerPoint {
118552
118552
  */
118553
118553
  interface SlideLayoutCollectionLoadOptions {
118554
118554
  /**
118555
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118555
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118556
118556
  */
118557
118557
  $all?: boolean;
118558
118558
  /**
@@ -118578,7 +118578,7 @@ declare namespace PowerPoint {
118578
118578
  */
118579
118579
  interface SlideMasterLoadOptions {
118580
118580
  /**
118581
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118581
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118582
118582
  */
118583
118583
  $all?: boolean;
118584
118584
  /**
@@ -118604,7 +118604,7 @@ declare namespace PowerPoint {
118604
118604
  */
118605
118605
  interface TagLoadOptions {
118606
118606
  /**
118607
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118607
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118608
118608
  */
118609
118609
  $all?: boolean;
118610
118610
  /**
@@ -118630,7 +118630,7 @@ declare namespace PowerPoint {
118630
118630
  */
118631
118631
  interface TagCollectionLoadOptions {
118632
118632
  /**
118633
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118633
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118634
118634
  */
118635
118635
  $all?: boolean;
118636
118636
  /**
@@ -118656,7 +118656,7 @@ declare namespace PowerPoint {
118656
118656
  */
118657
118657
  interface SlideLoadOptions {
118658
118658
  /**
118659
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118659
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118660
118660
  */
118661
118661
  $all?: boolean;
118662
118662
  /**
@@ -118689,7 +118689,7 @@ declare namespace PowerPoint {
118689
118689
  */
118690
118690
  interface ShapeFillLoadOptions {
118691
118691
  /**
118692
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118692
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118693
118693
  */
118694
118694
  $all?: boolean;
118695
118695
  /**
@@ -118722,7 +118722,7 @@ declare namespace PowerPoint {
118722
118722
  */
118723
118723
  interface ShapeLineFormatLoadOptions {
118724
118724
  /**
118725
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118725
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118726
118726
  */
118727
118727
  $all?: boolean;
118728
118728
  /**
@@ -118776,7 +118776,7 @@ declare namespace PowerPoint {
118776
118776
  */
118777
118777
  interface BulletFormatLoadOptions {
118778
118778
  /**
118779
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118779
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118780
118780
  */
118781
118781
  $all?: boolean;
118782
118782
  /**
@@ -118795,7 +118795,7 @@ declare namespace PowerPoint {
118795
118795
  */
118796
118796
  interface ParagraphFormatLoadOptions {
118797
118797
  /**
118798
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118798
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118799
118799
  */
118800
118800
  $all?: boolean;
118801
118801
  /**
@@ -118821,7 +118821,7 @@ declare namespace PowerPoint {
118821
118821
  */
118822
118822
  interface ShapeFontLoadOptions {
118823
118823
  /**
118824
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118824
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118825
118825
  */
118826
118826
  $all?: boolean;
118827
118827
  /**
@@ -118875,7 +118875,7 @@ declare namespace PowerPoint {
118875
118875
  */
118876
118876
  interface TextRangeLoadOptions {
118877
118877
  /**
118878
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118878
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118879
118879
  */
118880
118880
  $all?: boolean;
118881
118881
  /**
@@ -118924,7 +118924,7 @@ declare namespace PowerPoint {
118924
118924
  */
118925
118925
  interface TextFrameLoadOptions {
118926
118926
  /**
118927
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
118927
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
118928
118928
  */
118929
118929
  $all?: boolean;
118930
118930
  /**
@@ -118999,7 +118999,7 @@ declare namespace PowerPoint {
118999
118999
  */
119000
119000
  interface ShapeLoadOptions {
119001
119001
  /**
119002
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
119002
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
119003
119003
  */
119004
119004
  $all?: boolean;
119005
119005
  /**
@@ -119077,11 +119077,11 @@ declare namespace PowerPoint {
119077
119077
  * Represents a collection of shapes.
119078
119078
  *
119079
119079
  * @remarks
119080
- * [Api set: PowerPointApi 1.3]
119080
+ * [Api set: PowerPointApi 1.5]
119081
119081
  */
119082
119082
  interface ShapeScopedCollectionLoadOptions {
119083
119083
  /**
119084
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
119084
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
119085
119085
  */
119086
119086
  $all?: boolean;
119087
119087
  /**
@@ -119163,7 +119163,7 @@ declare namespace PowerPoint {
119163
119163
  */
119164
119164
  interface SlideCollectionLoadOptions {
119165
119165
  /**
119166
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
119166
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
119167
119167
  */
119168
119168
  $all?: boolean;
119169
119169
  /**
@@ -119192,11 +119192,11 @@ declare namespace PowerPoint {
119192
119192
  * Represents a collection of slides in the presentation.
119193
119193
  *
119194
119194
  * @remarks
119195
- * [Api set: PowerPointApi 1.2]
119195
+ * [Api set: PowerPointApi 1.5]
119196
119196
  */
119197
119197
  interface SlideScopedCollectionLoadOptions {
119198
119198
  /**
119199
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
119199
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
119200
119200
  */
119201
119201
  $all?: boolean;
119202
119202
  /**
@@ -119229,7 +119229,7 @@ declare namespace PowerPoint {
119229
119229
  */
119230
119230
  interface SlideMasterCollectionLoadOptions {
119231
119231
  /**
119232
- Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
119232
+ Specifying `$all` for the load options loads all the scalar properties (such as `Range.address`) but not the navigational properties (such as `Range.format.fill.color`).
119233
119233
  */
119234
119234
  $all?: boolean;
119235
119235
  /**
office-js/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js",
3
- "version": "1.0.410",
3
+ "version": "1.0.411",
4
4
  "description": "TypeScript definitions for office-js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js",
6
6
  "license": "MIT",
@@ -45,6 +45,6 @@
45
45
  },
46
46
  "scripts": {},
47
47
  "dependencies": {},
48
- "typesPublisherContentHash": "ccc7b61ce46f557c7a2587e412cdff7a291cc9b230ad1aaaaa3d5bcd2d74efa0",
48
+ "typesPublisherContentHash": "294aa411a4ab747a5fafc736077f6b749a4ee0ae4328b51d3ce5b0a9fa46aaaf",
49
49
  "typeScriptVersion": "4.8"
50
50
  }