@types/office-js-preview 1.0.517 → 1.0.518

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.
@@ -8,7 +8,7 @@ This package contains type definitions for office-js-preview (https://github.com
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Mon, 30 Sep 2024 22:07:46 GMT
11
+ * Last updated: Tue, 01 Oct 2024 00:33:23 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -7782,7 +7782,7 @@ declare namespace Office {
7782
7782
  *
7783
7783
  * @remarks
7784
7784
  *
7785
- * Files in the "compressed" format will return a byte array that can be transformed to a base64-encoded string if required.
7785
+ * Files in the "compressed" format will return a byte array that can be transformed to a Base64-encoded string if required.
7786
7786
  */
7787
7787
  data: any;
7788
7788
  /**
@@ -8850,7 +8850,7 @@ declare namespace Office {
8850
8850
  */
8851
8851
  enum AttachmentContentFormat {
8852
8852
  /**
8853
- * The content of the attachment is returned as a base64-encoded string.
8853
+ * The content of the attachment is returned as a Base64-encoded string.
8854
8854
  */
8855
8855
  Base64 = "base64",
8856
8856
  /**
@@ -12540,7 +12540,7 @@ declare namespace Office {
12540
12540
  /**
12541
12541
  * The string format to use for an attachment's content.
12542
12542
  *
12543
- * For file attachments, the formatting is a base64-encoded string.
12543
+ * For file attachments, the formatting is a Base64-encoded string.
12544
12544
  *
12545
12545
  * For item attachments that represent messages and were attached by drag-and-drop or "Attach Item",
12546
12546
  * the formatting is a string representing an .eml formatted file.
@@ -29313,12 +29313,12 @@ declare namespace Excel {
29313
29313
  }
29314
29314
  /**
29315
29315
  *
29316
- * Creates and opens a new workbook. Optionally, the workbook can be pre-populated with a base64-encoded .xlsx file.
29316
+ * Creates and opens a new workbook. Optionally, the workbook can be pre-populated with a Base64-encoded .xlsx file.
29317
29317
  * Note: Macros can be a security risk. If this API is used to create a workbook that includes a macro, the add-in user will be prompted with a "Trust this add-in?" dialog in the Excel UI. The user must select the "Trust add-in" button to proceed.
29318
- *
29318
+ *
29319
29319
  * [Api set: ExcelApi 1.8]
29320
29320
  *
29321
- * @param base64File Optional. The base64 encoded .xlsx file. The default value is null.
29321
+ * @param base64File Optional. The Base64-encoded .xlsx file. The default value is null.
29322
29322
  */
29323
29323
  function createWorkbook(base64?: string): Promise<void>;
29324
29324
  interface ThreeArrowsSet {
@@ -29545,14 +29545,14 @@ declare namespace Excel {
29545
29545
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
29546
29546
  context: RequestContext;
29547
29547
  /**
29548
- * Gets the base64-encoded image data stored in the shared image cache with the cache unique identifier (UID).
29548
+ * Gets the Base64-encoded image data stored in the shared image cache with the cache unique identifier (UID).
29549
29549
  *
29550
29550
  * @remarks
29551
29551
  * [Api set: ExcelApi BETA (PREVIEW ONLY)]
29552
29552
  * @beta
29553
29553
  *
29554
29554
  * @param cacheUid Represents the unique identifier (UID) of the image as it appears in the cache. The cache UID can be obtained from JSON representation of the values in the cell.
29555
- * @returns The base64-encoded image data.
29555
+ * @returns The Base64-encoded image data.
29556
29556
  */
29557
29557
  getBase64EncodedImageData(cacheUid: string): OfficeExtension.ClientResult<string>;
29558
29558
  /**
@@ -34866,7 +34866,7 @@ declare namespace Excel {
34866
34866
  * @remarks
34867
34867
  * [Api set: ExcelApi 1.13]
34868
34868
  *
34869
- * @param base64File Required. The base64-encoded string representing the source workbook file.
34869
+ * @param base64File Required. The Base64-encoded string representing the source workbook file.
34870
34870
  * @param options Optional. The options that define which worksheets to insert and where in the workbook the new worksheets will be inserted. By default, all the worksheets from the source workbook are inserted at the end of the current workbook.
34871
34871
  * @returns An array of IDs corresponding to each newly inserted worksheet.
34872
34872
  */
@@ -35632,7 +35632,7 @@ declare namespace Excel {
35632
35632
  * [Api set: ExcelApi BETA (PREVIEW ONLY)]
35633
35633
  * @beta
35634
35634
  *
35635
- * @param base64File Required. The base64-encoded string representing the source workbook file.
35635
+ * @param base64File Required. The Base64-encoded string representing the source workbook file.
35636
35636
  * @param sheetNamesToInsert Optional. The names of individual worksheets to insert. By default, all the worksheets from the source workbook are inserted.
35637
35637
  * @param positionType Optional. Where in the current workbook the new worksheets will be inserted. See `Excel.WorksheetPositionType` for details. Default is "Start".
35638
35638
  * @param relativeTo Optional. The worksheet in the current workbook that is referenced for the `positionType` parameter. Default is `null` and, based on `positionType`, it will insert worksheets at the start or end of the current workbook.
@@ -35648,7 +35648,7 @@ declare namespace Excel {
35648
35648
  * [Api set: ExcelApi BETA (PREVIEW ONLY)]
35649
35649
  * @beta
35650
35650
  *
35651
- * @param base64File Required. The base64-encoded string representing the source workbook file.
35651
+ * @param base64File Required. The Base64-encoded string representing the source workbook file.
35652
35652
  * @param sheetNamesToInsert Optional. The names of individual worksheets to insert. By default, all the worksheets from the source workbook are inserted.
35653
35653
  * @param positionType Optional. Where in the current workbook the new worksheets will be inserted. See `Excel.WorksheetPositionType` for details. Default is "Start".
35654
35654
  * @param relativeTo Optional. The worksheet in the current workbook that is referenced for the `positionType` parameter. Default is `null` and, based on `positionType`, it will insert worksheets at the start or end of the current workbook.
@@ -36853,7 +36853,7 @@ declare namespace Excel {
36853
36853
  */
36854
36854
  getExtendedRange(direction: "Left" | "Right" | "Up" | "Down", activeCell?: Range | string): Excel.Range;
36855
36855
  /**
36856
- * Renders the range as a base64-encoded png image.
36856
+ * Renders the range as a Base64-encoded png image.
36857
36857
  **Important**: This API is currently unsupported in Excel for Mac. Visit {@link https://github.com/OfficeDev/office-js/issues/235 | OfficeDev/office-js Issue #235} for the current status.
36858
36858
  *
36859
36859
  * @remarks
@@ -41510,7 +41510,7 @@ declare namespace Excel {
41510
41510
  */
41511
41511
  getDataTableOrNullObject(): Excel.ChartDataTable;
41512
41512
  /**
41513
- * Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions.
41513
+ * Renders the chart as a Base64-encoded image by scaling the chart to fit the specified dimensions.
41514
41514
  The aspect ratio is preserved as part of the resizing.
41515
41515
  *
41516
41516
  * @remarks
@@ -41522,7 +41522,7 @@ declare namespace Excel {
41522
41522
  */
41523
41523
  getImage(width?: number, height?: number, fittingMode?: Excel.ImageFittingMode): OfficeExtension.ClientResult<string>;
41524
41524
  /**
41525
- * Renders the chart as a base64-encoded image by scaling the chart to fit the specified dimensions.
41525
+ * Renders the chart as a Base64-encoded image by scaling the chart to fit the specified dimensions.
41526
41526
  The aspect ratio is preserved as part of the resizing.
41527
41527
  *
41528
41528
  * @remarks
@@ -53233,12 +53233,12 @@ declare namespace Excel {
53233
53233
  */
53234
53234
  addGroup(values: Array<string | Shape>): Excel.Shape;
53235
53235
  /**
53236
- * Creates an image from a base64-encoded string and adds it to the worksheet. Returns the `Shape` object that represents the new image.
53236
+ * Creates an image from a Base64-encoded string and adds it to the worksheet. Returns the `Shape` object that represents the new image.
53237
53237
  *
53238
53238
  * @remarks
53239
53239
  * [Api set: ExcelApi 1.9]
53240
53240
  *
53241
- * @param base64ImageString A base64-encoded string representing an image in either JPEG or PNG format.
53241
+ * @param base64ImageString A Base64-encoded string representing an image in either JPEG or PNG format.
53242
53242
  */
53243
53243
  addImage(base64ImageString: string): Excel.Shape;
53244
53244
  /**
@@ -53581,7 +53581,7 @@ declare namespace Excel {
53581
53581
  */
53582
53582
  delete(): void;
53583
53583
  /**
53584
- * Converts the shape to an image and returns the image as a base64-encoded string. The DPI is 96. The only supported formats are `Excel.PictureFormat.BMP`, `Excel.PictureFormat.PNG`, `Excel.PictureFormat.JPEG`, and `Excel.PictureFormat.GIF`.
53584
+ * Converts the shape to an image and returns the image as a Base64-encoded string. The DPI is 96. The only supported formats are `Excel.PictureFormat.BMP`, `Excel.PictureFormat.PNG`, `Excel.PictureFormat.JPEG`, and `Excel.PictureFormat.GIF`.
53585
53585
  *
53586
53586
  * @remarks
53587
53587
  * [Api set: ExcelApi 1.9]
@@ -53590,7 +53590,7 @@ declare namespace Excel {
53590
53590
  */
53591
53591
  getAsImage(format: Excel.PictureFormat): OfficeExtension.ClientResult<string>;
53592
53592
  /**
53593
- * Converts the shape to an image and returns the image as a base64-encoded string. The DPI is 96. The only supported formats are `Excel.PictureFormat.BMP`, `Excel.PictureFormat.PNG`, `Excel.PictureFormat.JPEG`, and `Excel.PictureFormat.GIF`.
53593
+ * Converts the shape to an image and returns the image as a Base64-encoded string. The DPI is 96. The only supported formats are `Excel.PictureFormat.BMP`, `Excel.PictureFormat.PNG`, `Excel.PictureFormat.JPEG`, and `Excel.PictureFormat.GIF`.
53594
53594
  *
53595
53595
  * @remarks
53596
53596
  * [Api set: ExcelApi 1.9]
@@ -90429,7 +90429,7 @@ declare namespace Word {
90429
90429
  */
90430
90430
  untrack(): Word.CritiqueAnnotation;
90431
90431
  /**
90432
- * 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.)
90432
+ * 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's passed to it.)
90433
90433
  * Whereas the original `Word.CritiqueAnnotation` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CritiqueAnnotationData`) that contains shallow copies of any loaded child properties from the original object.
90434
90434
  */
90435
90435
  toJSON(): Word.Interfaces.CritiqueAnnotationData;
@@ -90542,7 +90542,7 @@ declare namespace Word {
90542
90542
  */
90543
90543
  untrack(): Word.Annotation;
90544
90544
  /**
90545
- * 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.)
90545
+ * 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's passed to it.)
90546
90546
  * Whereas the original `Word.Annotation` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.AnnotationData`) that contains shallow copies of any loaded child properties from the original object.
90547
90547
  */
90548
90548
  toJSON(): Word.Interfaces.AnnotationData;
@@ -90690,7 +90690,7 @@ declare namespace Word {
90690
90690
  */
90691
90691
  untrack(): Word.AnnotationCollection;
90692
90692
  /**
90693
- * 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.)
90693
+ * 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's passed to it.)
90694
90694
  * Whereas the original `Word.AnnotationCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.AnnotationCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
90695
90695
  */
90696
90696
  toJSON(): Word.Interfaces.AnnotationCollectionData;
@@ -90743,7 +90743,7 @@ declare namespace Word {
90743
90743
  */
90744
90744
  static newObject(context: OfficeExtension.ClientRequestContext): Word.Application;
90745
90745
  /**
90746
- * 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.)
90746
+ * 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's passed to it.)
90747
90747
  * Whereas the original `Word.Application` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ApplicationData`) that contains shallow copies of any loaded child properties from the original object.
90748
90748
  */
90749
90749
  toJSON(): {
@@ -91189,7 +91189,7 @@ declare namespace Word {
91189
91189
  */
91190
91190
  untrack(): Word.Body;
91191
91191
  /**
91192
- * 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.)
91192
+ * 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's passed to it.)
91193
91193
  * Whereas the original `Word.Body` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.BodyData`) that contains shallow copies of any loaded child properties from the original object.
91194
91194
  */
91195
91195
  toJSON(): Word.Interfaces.BodyData;
@@ -91276,7 +91276,7 @@ declare namespace Word {
91276
91276
  */
91277
91277
  untrack(): Word.Border;
91278
91278
  /**
91279
- * 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.)
91279
+ * 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's passed to it.)
91280
91280
  * Whereas the original `Word.Border` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.BorderData`) that contains shallow copies of any loaded child properties from the original object.
91281
91281
  */
91282
91282
  toJSON(): Word.Interfaces.BorderData;
@@ -91391,7 +91391,7 @@ declare namespace Word {
91391
91391
  */
91392
91392
  untrack(): Word.BorderCollection;
91393
91393
  /**
91394
- * 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.)
91394
+ * 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's passed to it.)
91395
91395
  * Whereas the original `Word.BorderCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.BorderCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
91396
91396
  */
91397
91397
  toJSON(): Word.Interfaces.BorderCollectionData;
@@ -91450,7 +91450,7 @@ declare namespace Word {
91450
91450
  */
91451
91451
  untrack(): Word.CheckboxContentControl;
91452
91452
  /**
91453
- * 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.)
91453
+ * 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's passed to it.)
91454
91454
  * Whereas the original `Word.CheckboxContentControl` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CheckboxContentControlData`) that contains shallow copies of any loaded child properties from the original object.
91455
91455
  */
91456
91456
  toJSON(): Word.Interfaces.CheckboxContentControlData;
@@ -91581,7 +91581,7 @@ declare namespace Word {
91581
91581
  */
91582
91582
  untrack(): Word.Comment;
91583
91583
  /**
91584
- * 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.)
91584
+ * 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's passed to it.)
91585
91585
  * Whereas the original `Word.Comment` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CommentData`) that contains shallow copies of any loaded child properties from the original object.
91586
91586
  */
91587
91587
  toJSON(): Word.Interfaces.CommentData;
@@ -91638,7 +91638,7 @@ declare namespace Word {
91638
91638
  */
91639
91639
  untrack(): Word.CommentCollection;
91640
91640
  /**
91641
- * 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.)
91641
+ * 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's passed to it.)
91642
91642
  * Whereas the original `Word.CommentCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CommentCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
91643
91643
  */
91644
91644
  toJSON(): Word.Interfaces.CommentCollectionData;
@@ -91747,7 +91747,7 @@ declare namespace Word {
91747
91747
  */
91748
91748
  untrack(): Word.CommentContentRange;
91749
91749
  /**
91750
- * 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.)
91750
+ * 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's passed to it.)
91751
91751
  * Whereas the original `Word.CommentContentRange` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CommentContentRangeData`) that contains shallow copies of any loaded child properties from the original object.
91752
91752
  */
91753
91753
  toJSON(): Word.Interfaces.CommentContentRangeData;
@@ -91855,7 +91855,7 @@ declare namespace Word {
91855
91855
  */
91856
91856
  untrack(): Word.CommentReply;
91857
91857
  /**
91858
- * 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.)
91858
+ * 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's passed to it.)
91859
91859
  * Whereas the original `Word.CommentReply` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CommentReplyData`) that contains shallow copies of any loaded child properties from the original object.
91860
91860
  */
91861
91861
  toJSON(): Word.Interfaces.CommentReplyData;
@@ -91912,7 +91912,7 @@ declare namespace Word {
91912
91912
  */
91913
91913
  untrack(): Word.CommentReplyCollection;
91914
91914
  /**
91915
- * 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.)
91915
+ * 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's passed to it.)
91916
91916
  * Whereas the original `Word.CommentReplyCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CommentReplyCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
91917
91917
  */
91918
91918
  toJSON(): Word.Interfaces.CommentReplyCollectionData;
@@ -92538,7 +92538,7 @@ declare namespace Word {
92538
92538
  */
92539
92539
  untrack(): Word.ContentControl;
92540
92540
  /**
92541
- * 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.)
92541
+ * 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's passed to it.)
92542
92542
  * Whereas the original `Word.ContentControl` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ContentControlData`) that contains shallow copies of any loaded child properties from the original object.
92543
92543
  */
92544
92544
  toJSON(): Word.Interfaces.ContentControlData;
@@ -92658,7 +92658,7 @@ declare namespace Word {
92658
92658
  */
92659
92659
  untrack(): Word.ContentControlCollection;
92660
92660
  /**
92661
- * 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.)
92661
+ * 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's passed to it.)
92662
92662
  * Whereas the original `Word.ContentControlCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ContentControlCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
92663
92663
  */
92664
92664
  toJSON(): Word.Interfaces.ContentControlCollectionData;
@@ -92751,7 +92751,7 @@ declare namespace Word {
92751
92751
  */
92752
92752
  untrack(): Word.ContentControlListItem;
92753
92753
  /**
92754
- * 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.)
92754
+ * 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's passed to it.)
92755
92755
  * Whereas the original `Word.ContentControlListItem` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ContentControlListItemData`) that contains shallow copies of any loaded child properties from the original object.
92756
92756
  */
92757
92757
  toJSON(): Word.Interfaces.ContentControlListItemData;
@@ -92813,7 +92813,7 @@ declare namespace Word {
92813
92813
  */
92814
92814
  untrack(): Word.ContentControlListItemCollection;
92815
92815
  /**
92816
- * 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.)
92816
+ * 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's passed to it.)
92817
92817
  * Whereas the original `Word.ContentControlListItemCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ContentControlListItemCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
92818
92818
  */
92819
92819
  toJSON(): Word.Interfaces.ContentControlListItemCollectionData;
@@ -92911,7 +92911,7 @@ declare namespace Word {
92911
92911
  */
92912
92912
  untrack(): Word.CustomProperty;
92913
92913
  /**
92914
- * 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.)
92914
+ * 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's passed to it.)
92915
92915
  * Whereas the original `Word.CustomProperty` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CustomPropertyData`) that contains shallow copies of any loaded child properties from the original object.
92916
92916
  */
92917
92917
  toJSON(): Word.Interfaces.CustomPropertyData;
@@ -92996,7 +92996,7 @@ declare namespace Word {
92996
92996
  */
92997
92997
  untrack(): Word.CustomPropertyCollection;
92998
92998
  /**
92999
- * 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.)
92999
+ * 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's passed to it.)
93000
93000
  * Whereas the original `Word.CustomPropertyCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CustomPropertyCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
93001
93001
  */
93002
93002
  toJSON(): Word.Interfaces.CustomPropertyCollectionData;
@@ -93275,7 +93275,7 @@ declare namespace Word {
93275
93275
  */
93276
93276
  untrack(): Word.CustomXmlPart;
93277
93277
  /**
93278
- * 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.)
93278
+ * 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's passed to it.)
93279
93279
  * Whereas the original `Word.CustomXmlPart` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CustomXmlPartData`) that contains shallow copies of any loaded child properties from the original object.
93280
93280
  */
93281
93281
  toJSON(): Word.Interfaces.CustomXmlPartData;
@@ -93361,7 +93361,7 @@ declare namespace Word {
93361
93361
  */
93362
93362
  untrack(): Word.CustomXmlPartCollection;
93363
93363
  /**
93364
- * 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.)
93364
+ * 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's passed to it.)
93365
93365
  * Whereas the original `Word.CustomXmlPartCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CustomXmlPartCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
93366
93366
  */
93367
93367
  toJSON(): Word.Interfaces.CustomXmlPartCollectionData;
@@ -93443,7 +93443,7 @@ declare namespace Word {
93443
93443
  */
93444
93444
  untrack(): Word.CustomXmlPartScopedCollection;
93445
93445
  /**
93446
- * 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.)
93446
+ * 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's passed to it.)
93447
93447
  * Whereas the original `Word.CustomXmlPartScopedCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CustomXmlPartScopedCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
93448
93448
  */
93449
93449
  toJSON(): Word.Interfaces.CustomXmlPartScopedCollectionData;
@@ -93543,8 +93543,8 @@ declare namespace Word {
93543
93543
  addStyle(name: string, type: "Character" | "List" | "Paragraph" | "Table"): Word.Style;
93544
93544
  /**
93545
93545
  * Closes the current document.
93546
- *
93547
- * Note: This API isn't supported in Word on the web.
93546
+
93547
+ Note: This API isn't supported in Word on the web.
93548
93548
  *
93549
93549
  * @remarks
93550
93550
  * [Api set: WordApi 1.5]
@@ -93554,8 +93554,8 @@ declare namespace Word {
93554
93554
  close(closeBehavior?: Word.CloseBehavior): void;
93555
93555
  /**
93556
93556
  * Closes the current document.
93557
- *
93558
- * Note: This API isn't supported in Word on the web.
93557
+
93558
+ Note: This API isn't supported in Word on the web.
93559
93559
  *
93560
93560
  * @remarks
93561
93561
  * [Api set: WordApi 1.5]
@@ -93832,7 +93832,7 @@ declare namespace Word {
93832
93832
  */
93833
93833
  untrack(): Word.Document;
93834
93834
  /**
93835
- * 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.)
93835
+ * 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's passed to it.)
93836
93836
  * Whereas the original `Word.Document` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.DocumentData`) that contains shallow copies of any loaded child properties from the original object.
93837
93837
  */
93838
93838
  toJSON(): Word.Interfaces.DocumentData;
@@ -94045,7 +94045,7 @@ declare namespace Word {
94045
94045
  */
94046
94046
  untrack(): Word.DocumentCreated;
94047
94047
  /**
94048
- * 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.)
94048
+ * 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's passed to it.)
94049
94049
  * Whereas the original `Word.DocumentCreated` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.DocumentCreatedData`) that contains shallow copies of any loaded child properties from the original object.
94050
94050
  */
94051
94051
  toJSON(): Word.Interfaces.DocumentCreatedData;
@@ -94088,7 +94088,7 @@ declare namespace Word {
94088
94088
  */
94089
94089
  category: string;
94090
94090
  /**
94091
- * Specifies the comments of the document.
94091
+ * Specifies the Comments field in the metadata of the document. These have no connection to comments by users made in the document.
94092
94092
  *
94093
94093
  * @remarks
94094
94094
  * [Api set: WordApi 1.3]
@@ -94223,7 +94223,7 @@ declare namespace Word {
94223
94223
  */
94224
94224
  untrack(): Word.DocumentProperties;
94225
94225
  /**
94226
- * 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.)
94226
+ * 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's passed to it.)
94227
94227
  * Whereas the original `Word.DocumentProperties` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.DocumentPropertiesData`) that contains shallow copies of any loaded child properties from the original object.
94228
94228
  */
94229
94229
  toJSON(): Word.Interfaces.DocumentPropertiesData;
@@ -94290,7 +94290,7 @@ declare namespace Word {
94290
94290
  */
94291
94291
  untrack(): Word.DropDownListContentControl;
94292
94292
  /**
94293
- * 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.)
94293
+ * 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's passed to it.)
94294
94294
  * Whereas the original `Word.DropDownListContentControl` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.DropDownListContentControlData`) that contains shallow copies of any loaded child properties from the original object.
94295
94295
  */
94296
94296
  toJSON(): Word.Interfaces.DropDownListContentControlData;
@@ -94357,7 +94357,7 @@ declare namespace Word {
94357
94357
  */
94358
94358
  untrack(): Word.ComboBoxContentControl;
94359
94359
  /**
94360
- * 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.)
94360
+ * 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's passed to it.)
94361
94361
  * Whereas the original `Word.ComboBoxContentControl` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ComboBoxContentControlData`) that contains shallow copies of any loaded child properties from the original object.
94362
94362
  */
94363
94363
  toJSON(): Word.Interfaces.ComboBoxContentControlData;
@@ -94561,7 +94561,7 @@ declare namespace Word {
94561
94561
  */
94562
94562
  untrack(): Word.Field;
94563
94563
  /**
94564
- * 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.)
94564
+ * 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's passed to it.)
94565
94565
  * Whereas the original `Word.Field` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.FieldData`) that contains shallow copies of any loaded child properties from the original object.
94566
94566
  */
94567
94567
  toJSON(): Word.Interfaces.FieldData;
@@ -94633,7 +94633,7 @@ declare namespace Word {
94633
94633
  */
94634
94634
  untrack(): Word.FieldCollection;
94635
94635
  /**
94636
- * 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.)
94636
+ * 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's passed to it.)
94637
94637
  * Whereas the original `Word.FieldCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.FieldCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
94638
94638
  */
94639
94639
  toJSON(): Word.Interfaces.FieldCollectionData;
@@ -94770,7 +94770,7 @@ declare namespace Word {
94770
94770
  */
94771
94771
  untrack(): Word.Font;
94772
94772
  /**
94773
- * 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.)
94773
+ * 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's passed to it.)
94774
94774
  * Whereas the original `Word.Font` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.FontData`) that contains shallow copies of any loaded child properties from the original object.
94775
94775
  */
94776
94776
  toJSON(): Word.Interfaces.FontData;
@@ -95054,7 +95054,7 @@ declare namespace Word {
95054
95054
  */
95055
95055
  untrack(): Word.InlinePicture;
95056
95056
  /**
95057
- * 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.)
95057
+ * 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's passed to it.)
95058
95058
  * Whereas the original `Word.InlinePicture` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.InlinePictureData`) that contains shallow copies of any loaded child properties from the original object.
95059
95059
  */
95060
95060
  toJSON(): Word.Interfaces.InlinePictureData;
@@ -95111,7 +95111,7 @@ declare namespace Word {
95111
95111
  */
95112
95112
  untrack(): Word.InlinePictureCollection;
95113
95113
  /**
95114
- * 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.)
95114
+ * 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's passed to it.)
95115
95115
  * Whereas the original `Word.InlinePictureCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.InlinePictureCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
95116
95116
  */
95117
95117
  toJSON(): Word.Interfaces.InlinePictureCollectionData;
@@ -95126,7 +95126,7 @@ declare namespace Word {
95126
95126
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
95127
95127
  context: RequestContext;
95128
95128
  /**
95129
- * Gets paragraphs in the list. Read-only.
95129
+ * Gets paragraphs in the list.
95130
95130
  *
95131
95131
  * @remarks
95132
95132
  * [Api set: WordApi 1.3]
@@ -95336,7 +95336,7 @@ declare namespace Word {
95336
95336
  */
95337
95337
  untrack(): Word.List;
95338
95338
  /**
95339
- * 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.)
95339
+ * 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's passed to it.)
95340
95340
  * Whereas the original `Word.List` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ListData`) that contains shallow copies of any loaded child properties from the original object.
95341
95341
  */
95342
95342
  toJSON(): Word.Interfaces.ListData;
@@ -95420,7 +95420,7 @@ declare namespace Word {
95420
95420
  */
95421
95421
  untrack(): Word.ListCollection;
95422
95422
  /**
95423
- * 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.)
95423
+ * 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's passed to it.)
95424
95424
  * Whereas the original `Word.ListCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ListCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
95425
95425
  */
95426
95426
  toJSON(): Word.Interfaces.ListCollectionData;
@@ -95520,7 +95520,7 @@ declare namespace Word {
95520
95520
  */
95521
95521
  untrack(): Word.ListItem;
95522
95522
  /**
95523
- * 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.)
95523
+ * 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's passed to it.)
95524
95524
  * Whereas the original `Word.ListItem` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ListItemData`) that contains shallow copies of any loaded child properties from the original object.
95525
95525
  */
95526
95526
  toJSON(): Word.Interfaces.ListItemData;
@@ -95649,7 +95649,7 @@ declare namespace Word {
95649
95649
  */
95650
95650
  untrack(): Word.ListLevel;
95651
95651
  /**
95652
- * 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.)
95652
+ * 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's passed to it.)
95653
95653
  * Whereas the original `Word.ListLevel` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ListLevelData`) that contains shallow copies of any loaded child properties from the original object.
95654
95654
  */
95655
95655
  toJSON(): Word.Interfaces.ListLevelData;
@@ -95706,7 +95706,7 @@ declare namespace Word {
95706
95706
  */
95707
95707
  untrack(): Word.ListLevelCollection;
95708
95708
  /**
95709
- * 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.)
95709
+ * 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's passed to it.)
95710
95710
  * Whereas the original `Word.ListLevelCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ListLevelCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
95711
95711
  */
95712
95712
  toJSON(): Word.Interfaces.ListLevelCollectionData;
@@ -95772,7 +95772,7 @@ declare namespace Word {
95772
95772
  */
95773
95773
  untrack(): Word.ListTemplate;
95774
95774
  /**
95775
- * 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.)
95775
+ * 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's passed to it.)
95776
95776
  * Whereas the original `Word.ListTemplate` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ListTemplateData`) that contains shallow copies of any loaded child properties from the original object.
95777
95777
  */
95778
95778
  toJSON(): Word.Interfaces.ListTemplateData;
@@ -95866,7 +95866,7 @@ declare namespace Word {
95866
95866
  */
95867
95867
  untrack(): Word.NoteItem;
95868
95868
  /**
95869
- * 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.)
95869
+ * 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's passed to it.)
95870
95870
  * Whereas the original `Word.NoteItem` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.NoteItemData`) that contains shallow copies of any loaded child properties from the original object.
95871
95871
  */
95872
95872
  toJSON(): Word.Interfaces.NoteItemData;
@@ -95923,7 +95923,7 @@ declare namespace Word {
95923
95923
  */
95924
95924
  untrack(): Word.NoteItemCollection;
95925
95925
  /**
95926
- * 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.)
95926
+ * 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's passed to it.)
95927
95927
  * Whereas the original `Word.NoteItemCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.NoteItemCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
95928
95928
  */
95929
95929
  toJSON(): Word.Interfaces.NoteItemCollectionData;
@@ -96580,7 +96580,7 @@ declare namespace Word {
96580
96580
  */
96581
96581
  untrack(): Word.Paragraph;
96582
96582
  /**
96583
- * 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.)
96583
+ * 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's passed to it.)
96584
96584
  * Whereas the original `Word.Paragraph` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ParagraphData`) that contains shallow copies of any loaded child properties from the original object.
96585
96585
  */
96586
96586
  toJSON(): Word.Interfaces.ParagraphData;
@@ -96651,7 +96651,7 @@ declare namespace Word {
96651
96651
  */
96652
96652
  untrack(): Word.ParagraphCollection;
96653
96653
  /**
96654
- * 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.)
96654
+ * 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's passed to it.)
96655
96655
  * Whereas the original `Word.ParagraphCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ParagraphCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
96656
96656
  */
96657
96657
  toJSON(): Word.Interfaces.ParagraphCollectionData;
@@ -96801,7 +96801,7 @@ declare namespace Word {
96801
96801
  */
96802
96802
  untrack(): Word.ParagraphFormat;
96803
96803
  /**
96804
- * 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.)
96804
+ * 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's passed to it.)
96805
96805
  * Whereas the original `Word.ParagraphFormat` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ParagraphFormatData`) that contains shallow copies of any loaded child properties from the original object.
96806
96806
  */
96807
96807
  toJSON(): Word.Interfaces.ParagraphFormatData;
@@ -97467,7 +97467,7 @@ declare namespace Word {
97467
97467
  */
97468
97468
  untrack(): Word.Range;
97469
97469
  /**
97470
- * 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.)
97470
+ * 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's passed to it.)
97471
97471
  * Whereas the original `Word.Range` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.RangeData`) that contains shallow copies of any loaded child properties from the original object.
97472
97472
  */
97473
97473
  toJSON(): Word.Interfaces.RangeData;
@@ -97524,7 +97524,7 @@ declare namespace Word {
97524
97524
  */
97525
97525
  untrack(): Word.RangeCollection;
97526
97526
  /**
97527
- * 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.)
97527
+ * 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's passed to it.)
97528
97528
  * Whereas the original `Word.RangeCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.RangeCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
97529
97529
  */
97530
97530
  toJSON(): Word.Interfaces.RangeCollectionData;
@@ -97686,7 +97686,7 @@ declare namespace Word {
97686
97686
  */
97687
97687
  static newObject(context: OfficeExtension.ClientRequestContext): Word.SearchOptions;
97688
97688
  /**
97689
- * 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.)
97689
+ * 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's passed to it.)
97690
97690
  * Whereas the original `Word.SearchOptions` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.SearchOptionsData`) that contains shallow copies of any loaded child properties from the original object.
97691
97691
  */
97692
97692
  toJSON(): Word.Interfaces.SearchOptionsData;
@@ -97875,7 +97875,7 @@ declare namespace Word {
97875
97875
  */
97876
97876
  untrack(): Word.Section;
97877
97877
  /**
97878
- * 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.)
97878
+ * 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's passed to it.)
97879
97879
  * Whereas the original `Word.Section` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.SectionData`) that contains shallow copies of any loaded child properties from the original object.
97880
97880
  */
97881
97881
  toJSON(): Word.Interfaces.SectionData;
@@ -97932,7 +97932,7 @@ declare namespace Word {
97932
97932
  */
97933
97933
  untrack(): Word.SectionCollection;
97934
97934
  /**
97935
- * 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.)
97935
+ * 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's passed to it.)
97936
97936
  * Whereas the original `Word.SectionCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.SectionCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
97937
97937
  */
97938
97938
  toJSON(): Word.Interfaces.SectionCollectionData;
@@ -98005,7 +98005,7 @@ declare namespace Word {
98005
98005
  */
98006
98006
  untrack(): Word.Setting;
98007
98007
  /**
98008
- * 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.)
98008
+ * 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's passed to it.)
98009
98009
  * Whereas the original `Word.Setting` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.SettingData`) that contains shallow copies of any loaded child properties from the original object.
98010
98010
  */
98011
98011
  toJSON(): Word.Interfaces.SettingData;
@@ -98090,7 +98090,7 @@ declare namespace Word {
98090
98090
  */
98091
98091
  untrack(): Word.SettingCollection;
98092
98092
  /**
98093
- * 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.)
98093
+ * 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's passed to it.)
98094
98094
  * Whereas the original `Word.SettingCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.SettingCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
98095
98095
  */
98096
98096
  toJSON(): Word.Interfaces.SettingCollectionData;
@@ -98167,7 +98167,7 @@ declare namespace Word {
98167
98167
  */
98168
98168
  untrack(): Word.StyleCollection;
98169
98169
  /**
98170
- * 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.)
98170
+ * 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's passed to it.)
98171
98171
  * Whereas the original `Word.StyleCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.StyleCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
98172
98172
  */
98173
98173
  toJSON(): Word.Interfaces.StyleCollectionData;
@@ -98357,7 +98357,7 @@ declare namespace Word {
98357
98357
  */
98358
98358
  untrack(): Word.Style;
98359
98359
  /**
98360
- * 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.)
98360
+ * 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's passed to it.)
98361
98361
  * Whereas the original `Word.Style` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.StyleData`) that contains shallow copies of any loaded child properties from the original object.
98362
98362
  */
98363
98363
  toJSON(): Word.Interfaces.StyleData;
@@ -98430,7 +98430,7 @@ declare namespace Word {
98430
98430
  */
98431
98431
  untrack(): Word.Shading;
98432
98432
  /**
98433
- * 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.)
98433
+ * 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's passed to it.)
98434
98434
  * Whereas the original `Word.Shading` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ShadingData`) that contains shallow copies of any loaded child properties from the original object.
98435
98435
  */
98436
98436
  toJSON(): Word.Interfaces.ShadingData;
@@ -98966,7 +98966,7 @@ declare namespace Word {
98966
98966
  */
98967
98967
  untrack(): Word.Table;
98968
98968
  /**
98969
- * 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.)
98969
+ * 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's passed to it.)
98970
98970
  * Whereas the original `Word.Table` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TableData`) that contains shallow copies of any loaded child properties from the original object.
98971
98971
  */
98972
98972
  toJSON(): Word.Interfaces.TableData;
@@ -99067,7 +99067,7 @@ declare namespace Word {
99067
99067
  */
99068
99068
  untrack(): Word.TableStyle;
99069
99069
  /**
99070
- * 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.)
99070
+ * 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's passed to it.)
99071
99071
  * Whereas the original `Word.TableStyle` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TableStyleData`) that contains shallow copies of any loaded child properties from the original object.
99072
99072
  */
99073
99073
  toJSON(): Word.Interfaces.TableStyleData;
@@ -99124,7 +99124,7 @@ declare namespace Word {
99124
99124
  */
99125
99125
  untrack(): Word.TableCollection;
99126
99126
  /**
99127
- * 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.)
99127
+ * 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's passed to it.)
99128
99128
  * Whereas the original `Word.TableCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TableCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
99129
99129
  */
99130
99130
  toJSON(): Word.Interfaces.TableCollectionData;
@@ -99139,7 +99139,7 @@ declare namespace Word {
99139
99139
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
99140
99140
  context: RequestContext;
99141
99141
  /**
99142
- * Gets cells. Read-only.
99142
+ * Gets cells.
99143
99143
  *
99144
99144
  * @remarks
99145
99145
  * [Api set: WordApi 1.3]
@@ -99419,7 +99419,7 @@ declare namespace Word {
99419
99419
  */
99420
99420
  untrack(): Word.TableRow;
99421
99421
  /**
99422
- * 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.)
99422
+ * 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's passed to it.)
99423
99423
  * Whereas the original `Word.TableRow` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TableRowData`) that contains shallow copies of any loaded child properties from the original object.
99424
99424
  */
99425
99425
  toJSON(): Word.Interfaces.TableRowData;
@@ -99476,7 +99476,7 @@ declare namespace Word {
99476
99476
  */
99477
99477
  untrack(): Word.TableRowCollection;
99478
99478
  /**
99479
- * 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.)
99479
+ * 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's passed to it.)
99480
99480
  * Whereas the original `Word.TableRowCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TableRowCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
99481
99481
  */
99482
99482
  toJSON(): Word.Interfaces.TableRowCollectionData;
@@ -99721,7 +99721,7 @@ declare namespace Word {
99721
99721
  */
99722
99722
  untrack(): Word.TableCell;
99723
99723
  /**
99724
- * 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.)
99724
+ * 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's passed to it.)
99725
99725
  * Whereas the original `Word.TableCell` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TableCellData`) that contains shallow copies of any loaded child properties from the original object.
99726
99726
  */
99727
99727
  toJSON(): Word.Interfaces.TableCellData;
@@ -99778,7 +99778,7 @@ declare namespace Word {
99778
99778
  */
99779
99779
  untrack(): Word.TableCellCollection;
99780
99780
  /**
99781
- * 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.)
99781
+ * 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's passed to it.)
99782
99782
  * Whereas the original `Word.TableCellCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TableCellCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
99783
99783
  */
99784
99784
  toJSON(): Word.Interfaces.TableCellCollectionData;
@@ -99851,7 +99851,7 @@ declare namespace Word {
99851
99851
  */
99852
99852
  untrack(): Word.TableBorder;
99853
99853
  /**
99854
- * 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.)
99854
+ * 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's passed to it.)
99855
99855
  * Whereas the original `Word.TableBorder` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TableBorderData`) that contains shallow copies of any loaded child properties from the original object.
99856
99856
  */
99857
99857
  toJSON(): Word.Interfaces.TableBorderData;
@@ -99958,7 +99958,7 @@ declare namespace Word {
99958
99958
  */
99959
99959
  untrack(): Word.TrackedChange;
99960
99960
  /**
99961
- * 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.)
99961
+ * 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's passed to it.)
99962
99962
  * Whereas the original `Word.TrackedChange` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TrackedChangeData`) that contains shallow copies of any loaded child properties from the original object.
99963
99963
  */
99964
99964
  toJSON(): Word.Interfaces.TrackedChangeData;
@@ -100029,7 +100029,7 @@ declare namespace Word {
100029
100029
  */
100030
100030
  untrack(): Word.TrackedChangeCollection;
100031
100031
  /**
100032
- * 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.)
100032
+ * 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's passed to it.)
100033
100033
  * Whereas the original `Word.TrackedChangeCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.TrackedChangeCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
100034
100034
  */
100035
100035
  toJSON(): Word.Interfaces.TrackedChangeCollectionData;
@@ -104378,7 +104378,7 @@ declare namespace Word {
104378
104378
  */
104379
104379
  category?: string;
104380
104380
  /**
104381
- * Specifies the comments of the document.
104381
+ * Specifies the Comments field in the metadata of the document. These have no connection to comments by users made in the document.
104382
104382
  *
104383
104383
  * @remarks
104384
104384
  * [Api set: WordApi 1.3]
@@ -106215,7 +106215,7 @@ declare namespace Word {
106215
106215
  */
106216
106216
  category?: string;
106217
106217
  /**
106218
- * Specifies the comments of the document.
106218
+ * Specifies the Comments field in the metadata of the document. These have no connection to comments by users made in the document.
106219
106219
  *
106220
106220
  * @remarks
106221
106221
  * [Api set: WordApi 1.3]
@@ -106524,7 +106524,7 @@ declare namespace Word {
106524
106524
  /** An interface describing the data returned by calling `list.toJSON()`. */
106525
106525
  interface ListData {
106526
106526
  /**
106527
- * Gets paragraphs in the list. Read-only.
106527
+ * Gets paragraphs in the list.
106528
106528
  *
106529
106529
  * @remarks
106530
106530
  * [Api set: WordApi 1.3]
@@ -107492,7 +107492,7 @@ declare namespace Word {
107492
107492
  /** An interface describing the data returned by calling `tableRow.toJSON()`. */
107493
107493
  interface TableRowData {
107494
107494
  /**
107495
- * Gets cells. Read-only.
107495
+ * Gets cells.
107496
107496
  *
107497
107497
  * @remarks
107498
107498
  * [Api set: WordApi 1.3]
@@ -108969,7 +108969,7 @@ declare namespace Word {
108969
108969
  */
108970
108970
  category?: boolean;
108971
108971
  /**
108972
- * Specifies the comments of the document.
108972
+ * Specifies the Comments field in the metadata of the document. These have no connection to comments by users made in the document.
108973
108973
  *
108974
108974
  * @remarks
108975
108975
  * [Api set: WordApi 1.3]
@@ -122533,7 +122533,7 @@ declare namespace PowerPoint {
122533
122533
  * @remarks
122534
122534
  * [Api set: PowerPointApi 1.2]
122535
122535
  *
122536
- * @param base64File The base64-encoded string representing the source presentation file.
122536
+ * @param base64File The Base64-encoded string representing the source presentation file.
122537
122537
  * @param options The options that define which slides will be inserted, where the new slides will go, and which presentation's formatting will be used.
122538
122538
  */
122539
122539
  insertSlidesFromBase64(base64File: string, options?: PowerPoint.InsertSlideOptions): void;
@@ -124960,7 +124960,7 @@ declare namespace PowerPoint {
124960
124960
  */
124961
124961
  delete(): void;
124962
124962
  /**
124963
- * Exports the slide to its own presentation file, returned as base64-encoded data.
124963
+ * Exports the slide to its own presentation file, returned as Base64-encoded data.
124964
124964
  *
124965
124965
  * @remarks
124966
124966
  * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
@@ -128724,11 +128724,11 @@ declare namespace PowerPoint {
128724
128724
  }
128725
128725
  declare namespace PowerPoint {
128726
128726
  /**
128727
- * Creates and opens a new presentation. Optionally, the presentation can be pre-populated with a base64-encoded .pptx file.
128727
+ * Creates and opens a new presentation. Optionally, the presentation can be pre-populated with a Base64-encoded .pptx file.
128728
128728
  *
128729
128729
  * [Api set: PowerPointApi 1.1]
128730
128730
  *
128731
- * @param base64File Optional. The base64-encoded .pptx file. The default value is null.
128731
+ * @param base64File Optional. The Base64-encoded .pptx file. The default value is null.
128732
128732
  */
128733
128733
  function createPresentation(base64File?: string): Promise<void>;
128734
128734
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.517",
3
+ "version": "1.0.518",
4
4
  "description": "TypeScript definitions for office-js-preview",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
6
6
  "license": "MIT",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "scripts": {},
47
47
  "dependencies": {},
48
- "typesPublisherContentHash": "b5226546b9e95d625f82c89521d90e6c3ae452367e0ff96ab961ce6cc77a579c",
48
+ "typesPublisherContentHash": "addda6c813855e9325b3bc4c50c1228ca4541b237838b859cc30e114a92ccf77",
49
49
  "typeScriptVersion": "4.8",
50
50
  "nonNpm": true
51
51
  }