@types/office-js 1.0.337 → 1.0.339

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.
Files changed (3) hide show
  1. office-js/README.md +1 -1
  2. office-js/index.d.ts +105 -100
  3. office-js/package.json +2 -2
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: Thu, 13 Jul 2023 21:02:43 GMT
11
+ * Last updated: Thu, 24 Aug 2023 19:33:01 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Excel`, `Office`, `OfficeCore`, `OfficeExtension`, `OneNote`, `PowerPoint`, `Visio`, `Word`
14
14
 
office-js/index.d.ts CHANGED
@@ -10649,76 +10649,77 @@ declare namespace Office {
10649
10649
  /**
10650
10650
  * Asynchronously saves an item.
10651
10651
  *
10652
- * When invoked, this method saves the current message as a draft and returns the item ID via the callback function.
10653
- * In Outlook on the web or Outlook in online mode, the item is saved to the server.
10654
- * In Outlook in cached mode, the item is saved to the local cache.
10652
+ * Since appointments have no draft state, if `saveAsync` is called on an appointment in compose mode, the item is saved as a normal
10653
+ * appointment on the user's calendar. For new appointments that haven't been saved before, no invitation is sent.
10654
+ * For existing appointments, an update is sent to added or removed attendees.
10655
10655
  *
10656
- * Since appointments have no draft state, if `saveAsync` is called on an appointment in compose mode, the item will be saved as a normal
10657
- * appointment on the user's calendar. For new appointments that have not been saved before, no invitation will be sent.
10658
- * Saving an existing appointment will send an update to added or removed attendees.
10656
+ * @remarks
10657
+ * [Api set: Mailbox 1.3]
10658
+ *
10659
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
10660
+ *
10661
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
10662
+ *
10663
+ * **Important**:
10659
10664
  *
10660
- * When working with HTML-formatted content, it's important to note that the Outlook client may modify the content. This means that
10665
+ * - In Outlook on the web or Outlook in online mode, the item is saved to the server. In Outlook in cached mode, the item is saved to the local cache.
10666
+ *
10667
+ * - When working with HTML-formatted content, it's important to note that the Outlook client may modify the content. This means that
10661
10668
  * subsequent calls to methods like `Body.getAsync`, `Body.setAsync`, and even `saveAsync` may not result in the same content.
10662
10669
  *
10663
- * **Note**: If your add-in calls `saveAsync` on an item in compose mode in order to get an item ID to use with EWS or the REST API, be aware
10664
- * that when Outlook is in cached mode, it may take some time before the item is actually synced to the server.
10670
+ * - If your add-in calls `saveAsync` on an item in compose mode in order to get an item ID to use with EWS or the REST API, be aware that
10671
+ * when Outlook is in cached mode, it may take some time before the item is actually synced to the server.
10665
10672
  * Until the item is synced, using the item ID will return an error.
10666
10673
  *
10667
- * **Note**: In Outlook on Mac, only build 16.35.308 or later supports saving a meeting.
10674
+ * - In Outlook on Mac, only Build 16.35.308 or later supports saving a meeting.
10668
10675
  * Otherwise, the `saveAsync` method fails when called from a meeting in compose mode.
10669
10676
  * For a workaround, see {@link https://learn.microsoft.com/outlook/troubleshoot/calendars/cannot-save-meeting-as-draft-in-outlook-for-mac | Cannot save a meeting as a draft in Outlook for Mac by using Office JS API}.
10670
10677
  *
10671
- * @remarks
10672
- * [Api set: Mailbox 1.3]
10673
- *
10674
- * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
10675
- *
10676
- * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
10677
- *
10678
10678
  * **Errors**:
10679
10679
  *
10680
10680
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
10681
10681
  *
10682
10682
  * @param options - An object literal that contains one or more of the following properties:-
10683
10683
  * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10684
- * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
10685
- * type `Office.AsyncResult`.
10684
+ * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
10685
+ * which is an `Office.AsyncResult` object. The appointment ID is returned in the `asyncResult.value` property.
10686
10686
  */
10687
10687
  saveAsync(options: Office.AsyncContextOptions, callback: (asyncResult: Office.AsyncResult<string>) => void): void;
10688
10688
  /**
10689
10689
  * Asynchronously saves an item.
10690
10690
  *
10691
- * When invoked, this method saves the current message as a draft and returns the item ID via the callback function.
10692
- * In Outlook on the web or Outlook in online mode, the item is saved to the server. In Outlook in cached mode, the item is saved to the local cache.
10691
+ * Since appointments have no draft state, if `saveAsync` is called on an appointment in compose mode, the item is saved as a normal
10692
+ * appointment on the user's calendar. For new appointments that haven't been saved before, no invitation is sent.
10693
+ * For existing appointments, an update is sent to added or removed attendees.
10693
10694
  *
10694
- * Since appointments have no draft state, if `saveAsync` is called on an appointment in compose mode, the item will be saved as a normal
10695
- * appointment on the user's calendar. For new appointments that have not been saved before, no invitation will be sent.
10696
- * Saving an existing appointment will send an update to added or removed attendees.
10695
+ * @remarks
10696
+ * [Api set: Mailbox 1.3]
10697
+ *
10698
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
10699
+ *
10700
+ * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
10701
+ *
10702
+ * **Important**:
10697
10703
  *
10698
- * When working with HTML-formatted content, it's important to note that the Outlook client may modify the content. This means that
10704
+ * - In Outlook on the web or Outlook in online mode, the item is saved to the server. In Outlook in cached mode, the item is saved to the local cache.
10705
+ *
10706
+ * - When working with HTML-formatted content, it's important to note that the Outlook client may modify the content. This means that
10699
10707
  * subsequent calls to methods like `Body.getAsync`, `Body.setAsync`, and even `saveAsync` may not result in the same content.
10700
10708
  *
10701
- * **Note**: If your add-in calls `saveAsync` on an item in compose mode in order to get an item ID to use with EWS or the REST API, be aware that
10709
+ * - If your add-in calls `saveAsync` on an item in compose mode in order to get an item ID to use with EWS or the REST API, be aware that
10702
10710
  * when Outlook is in cached mode, it may take some time before the item is actually synced to the server.
10703
10711
  * Until the item is synced, using the item ID will return an error.
10704
10712
  *
10705
- * **Note**: In Outlook on Mac, only build 16.35.308 or later supports saving a meeting.
10713
+ * - In Outlook on Mac, only Build 16.35.308 or later supports saving a meeting.
10706
10714
  * Otherwise, the `saveAsync` method fails when called from a meeting in compose mode.
10707
10715
  * For a workaround, see {@link https://learn.microsoft.com/outlook/troubleshoot/calendars/cannot-save-meeting-as-draft-in-outlook-for-mac | Cannot save a meeting as a draft in Outlook for Mac by using Office JS API}.
10708
10716
  *
10709
- * @remarks
10710
- * [Api set: Mailbox 1.3]
10711
- *
10712
- * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **read/write item**
10713
- *
10714
- * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
10715
- *
10716
10717
  * **Errors**:
10717
10718
  *
10718
10719
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
10719
10720
  *
10720
- * @param callback - When the method completes, the function passed in the callback parameter is called with a single parameter of
10721
- * type `Office.AsyncResult`.
10721
+ * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
10722
+ * which is an `Office.AsyncResult` object. The appointment ID is returned in the `asyncResult.value` property.
10722
10723
  */
10723
10724
  saveAsync(callback: (asyncResult: Office.AsyncResult<string>) => void): void;
10724
10725
  /**
@@ -16145,22 +16146,7 @@ declare namespace Office {
16145
16146
  */
16146
16147
  removeHandlerAsync(eventType: Office.EventType | string, callback?: (asyncResult: Office.AsyncResult<void>) => void): void;
16147
16148
  /**
16148
- * Asynchronously saves an item.
16149
- *
16150
- * When invoked, this method saves the current message as a draft and returns the item ID via the callback function.
16151
- * In Outlook on the web or Outlook in online mode, the item is saved to the server.
16152
- * In Outlook in cached mode, the item is saved to the local cache.
16153
- *
16154
- * Since appointments have no draft state, if `saveAsync` is called on an appointment in compose mode, the item will be saved as a normal
16155
- * appointment on the user's calendar. For new appointments that have not been saved before, no invitation will be sent.
16156
- * Saving an existing appointment will send an update to added or removed attendees.
16157
- *
16158
- * When working with HTML-formatted content, it's important to note that the Outlook client may modify the content. This means that
16159
- * subsequent calls to methods like `Body.getAsync`, `Body.setAsync`, and even `saveAsync` may not result in the same content.
16160
- *
16161
- * **Note**: If your add-in calls `saveAsync` on an item in compose mode in order to get an item ID to use with EWS or the REST API, be aware
16162
- * that when Outlook is in cached mode, it may take some time before the item is actually synced to the server.
16163
- * Until the item is synced, using the itemId will return an error.
16149
+ * Asynchronously saves the current message as a draft.
16164
16150
  *
16165
16151
  * @remarks
16166
16152
  * [Api set: Mailbox 1.3]
@@ -16169,33 +16155,35 @@ declare namespace Office {
16169
16155
  *
16170
16156
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
16171
16157
  *
16158
+ * **Important**:
16159
+ *
16160
+ * - In Outlook on the web or Outlook in online mode, the item is saved to the server. In Outlook in cached mode, the item is saved to the local cache.
16161
+ *
16162
+ * - When working with HTML-formatted content, it's important to note that the Outlook client may modify the content. This means that
16163
+ * subsequent calls to methods like `Body.getAsync`, `Body.setAsync`, and even `saveAsync` may not result in the same content.
16164
+ *
16165
+ * - If your add-in calls `saveAsync` on an item in compose mode in order to get an item ID to use with EWS or the REST API, be aware that
16166
+ * when Outlook is in cached mode, it may take some time before the item is actually synced to the server.
16167
+ * Until the item is synced, using the item ID will return an error.
16168
+ *
16169
+ * - In Outlook on the web, the mailbox account to which a draft is saved varies when `saveAsync` is called on a message that will be sent
16170
+ * from a shared mailbox account. If the sender creates a new message from their personal mailbox and selects the shared mailbox account
16171
+ * in the **From** field, `saveAsync` saves the draft to the **Drafts** folder of the user's personal mailbox. If the sender opens the
16172
+ * shared mailbox account in a separate browser tab (through the **Open another mailbox** option, for example) and creates a new message
16173
+ * there, `saveAsync` saves the draft to the **Drafts** folder of the shared mailbox.
16174
+ *
16172
16175
  * **Errors**:
16173
16176
  *
16174
16177
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
16175
16178
  *
16176
16179
  * @param options - An object literal that contains one or more of the following properties:-
16177
16180
  * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16178
- * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
16179
- * type `Office.AsyncResult`.
16181
+ * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
16182
+ * which is an `Office.AsyncResult` object. The message ID is returned in the `asyncResult.value` property.
16180
16183
  */
16181
16184
  saveAsync(options: Office.AsyncContextOptions, callback: (asyncResult: Office.AsyncResult<string>) => void): void;
16182
16185
  /**
16183
- * Asynchronously saves an item.
16184
- *
16185
- * When invoked, this method saves the current message as a draft and returns the item ID via the callback function.
16186
- * In Outlook on the web or Outlook in online mode, the item is saved to the server.
16187
- * In Outlook in cached mode, the item is saved to the local cache.
16188
- *
16189
- * Since appointments have no draft state, if `saveAsync` is called on an appointment in compose mode, the item will be saved as a normal
16190
- * appointment on the user's calendar. For new appointments that have not been saved before, no invitation will be sent.
16191
- * Saving an existing appointment will send an update to added or removed attendees.
16192
- *
16193
- * When working with HTML-formatted content, it's important to note that the Outlook client may modify the content. This means that
16194
- * subsequent calls to methods like `Body.getAsync`, `Body.setAsync`, and even `saveAsync` may not result in the same content.
16195
- *
16196
- * **Note**: If your add-in calls `saveAsync` on an item in compose mode in order to get an item ID to use with EWS or the REST API, be aware
16197
- * that when Outlook is in cached mode, it may take some time before the item is actually synced to the server.
16198
- * Until the item is synced, using the `itemId` will return an error.
16186
+ * Asynchronously saves the current message as a draft.
16199
16187
  *
16200
16188
  * @remarks
16201
16189
  * [Api set: Mailbox 1.3]
@@ -16204,12 +16192,29 @@ declare namespace Office {
16204
16192
  *
16205
16193
  * **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
16206
16194
  *
16195
+ * **Important**:
16196
+ *
16197
+ * - In Outlook on the web or Outlook in online mode, the item is saved to the server. In Outlook in cached mode, the item is saved to the local cache.
16198
+ *
16199
+ * - When working with HTML-formatted content, it's important to note that the Outlook client may modify the content. This means that
16200
+ * subsequent calls to methods like `Body.getAsync`, `Body.setAsync`, and even `saveAsync` may not result in the same content.
16201
+ *
16202
+ * - If your add-in calls `saveAsync` on an item in compose mode in order to get an item ID to use with EWS or the REST API, be aware that
16203
+ * when Outlook is in cached mode, it may take some time before the item is actually synced to the server.
16204
+ * Until the item is synced, using the item ID will return an error.
16205
+ *
16206
+ * - In Outlook on the web, the mailbox account to which a draft is saved varies when `saveAsync` is called on a message that will be sent
16207
+ * from a shared mailbox account. If the sender creates a new message from their personal mailbox and selects the shared mailbox account
16208
+ * in the **From** field, `saveAsync` saves the draft to the **Drafts** folder of the user's personal mailbox. If the sender opens the
16209
+ * shared mailbox account in a separate browser tab (through the **Open another mailbox** option, for example) and creates a new message
16210
+ * there, `saveAsync` saves the draft to the **Drafts** folder of the shared mailbox.
16211
+ *
16207
16212
  * **Errors**:
16208
16213
  *
16209
16214
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
16210
16215
  *
16211
- * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
16212
- * type `Office.AsyncResult`.
16216
+ * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
16217
+ * which is an `Office.AsyncResult` object. The message ID is returned in the `asyncResult.value` property.
16213
16218
  */
16214
16219
  saveAsync(callback: (asyncResult: Office.AsyncResult<string>) => void): void;
16215
16220
  /**
@@ -32394,9 +32399,9 @@ declare namespace Excel {
32394
32399
  * [Api set: ExcelApi 1.10]
32395
32400
  *
32396
32401
  * @param groupOption Specifies how the range can be grouped by rows or columns.
32397
- An `InvalidArgument` error is thrown when the group option differs from the range's
32398
- `isEntireRow` or `isEntireColumn` property (i.e., `range.isEntireRow` is true and `groupOption` is "ByColumns"
32399
- or `range.isEntireColumn` is true and `groupOption` is "ByRows").
32402
+ * An `InvalidArgument` error is thrown when the group option differs from the range's
32403
+ * `isEntireRow` or `isEntireColumn` property (i.e., `range.isEntireRow` is true and `groupOption` is "ByColumns"
32404
+ * or `range.isEntireColumn` is true and `groupOption` is "ByRows").
32400
32405
  */
32401
32406
  group(groupOption: Excel.GroupOption): void;
32402
32407
  /**
@@ -32406,9 +32411,9 @@ declare namespace Excel {
32406
32411
  * [Api set: ExcelApi 1.10]
32407
32412
  *
32408
32413
  * @param groupOption Specifies how the range can be grouped by rows or columns.
32409
- An `InvalidArgument` error is thrown when the group option differs from the range's
32410
- `isEntireRow` or `isEntireColumn` property (i.e., `range.isEntireRow` is true and `groupOption` is "ByColumns"
32411
- or `range.isEntireColumn` is true and `groupOption` is "ByRows").
32414
+ * An `InvalidArgument` error is thrown when the group option differs from the range's
32415
+ * `isEntireRow` or `isEntireColumn` property (i.e., `range.isEntireRow` is true and `groupOption` is "ByColumns"
32416
+ * or `range.isEntireColumn` is true and `groupOption` is "ByRows").
32412
32417
  */
32413
32418
  group(groupOption: "ByRows" | "ByColumns"): void;
32414
32419
  /**
@@ -35869,8 +35874,8 @@ declare namespace Excel {
35869
35874
  * [Api set: ExcelApi 1.11]
35870
35875
  *
35871
35876
  * @param amount The number of character spaces by which the current indent is adjusted. This value should be between -250 and 250.
35872
- **Note**: If the amount would raise the indent level above 250, the indent level stays with 250.
35873
- Similarly, if the amount would lower the indent level below 0, the indent level stays 0.
35877
+ * **Note**: If the amount would raise the indent level above 250, the indent level stays with 250.
35878
+ * Similarly, if the amount would lower the indent level below 0, the indent level stays 0.
35874
35879
  */
35875
35880
  adjustIndent(amount: number): void;
35876
35881
  /**
@@ -37266,7 +37271,7 @@ declare namespace Excel {
37266
37271
  */
37267
37272
  name: string;
37268
37273
  /**
37269
- * Specifies how bars and columns are positioned. Can be a value between 100 and 100. Applies only to 2-D bar and 2-D column charts.
37274
+ * Specifies how bars and columns are positioned. Can be a value between -100 and 100. Applies only to 2-D bar and 2-D column charts.
37270
37275
  *
37271
37276
  * @remarks
37272
37277
  * [Api set: ExcelApi 1.8]
@@ -41402,8 +41407,8 @@ declare namespace Excel {
41402
41407
  * [Api set: ExcelApi 1.14]
41403
41408
  *
41404
41409
  * @param columnIndex The zero-based column index, which represents which column filter needs to be cleared.
41405
- If the index value is not supported (for example, if the value is a negative number, or if the value is greater than the number of available columns in the range),
41406
- then an `InvalidArgument` error will be thrown.
41410
+ * If the index value is not supported (for example, if the value is a negative number, or if the value is greater than the number of available columns in the range),
41411
+ * then an `InvalidArgument` error will be thrown.
41407
41412
  */
41408
41413
  clearColumnCriteria(columnIndex: number): void;
41409
41414
  /**
@@ -42264,7 +42269,7 @@ declare namespace Excel {
42264
42269
  */
42265
42270
  altTextTitle: string;
42266
42271
  /**
42267
- * Specifies if formatting will be automatically formatted when its refreshed or when fields are moved.
42272
+ * Specifies if formatting will be automatically formatted when it's refreshed or when fields are moved.
42268
42273
  *
42269
42274
  * @remarks
42270
42275
  * [Api set: ExcelApi 1.9]
@@ -43317,9 +43322,9 @@ declare namespace Excel {
43317
43322
  * @param sortBy Specifies if the sorting is done in ascending or descending order.
43318
43323
  * @param valuesHierarchy Specifies the values hierarchy on the data axis to be used for sorting.
43319
43324
  * @param pivotItemScope The items that should be used for the scope of the sorting. These will be the
43320
- items that make up the row or column that you want to sort on. If a string is used instead of a PivotItem,
43321
- the string represents the ID of the PivotItem. If there are no items other than data hierarchy on the axis
43322
- you want to sort on, this can be empty.
43325
+ * items that make up the row or column that you want to sort on. If a string is used instead of a PivotItem,
43326
+ * the string represents the ID of the PivotItem. If there are no items other than data hierarchy on the axis
43327
+ * you want to sort on, this can be empty.
43323
43328
  */
43324
43329
  sortByValues(sortBy: Excel.SortBy, valuesHierarchy: Excel.DataPivotHierarchy, pivotItemScope?: Array<PivotItem | string>): void;
43325
43330
  /**
@@ -43332,9 +43337,9 @@ declare namespace Excel {
43332
43337
  * @param sortBy Specifies if the sorting is done in ascending or descending order.
43333
43338
  * @param valuesHierarchy Specifies the values hierarchy on the data axis to be used for sorting.
43334
43339
  * @param pivotItemScope The items that should be used for the scope of the sorting. These will be the
43335
- items that make up the row or column that you want to sort on. If a string is used instead of a PivotItem,
43336
- the string represents the ID of the PivotItem. If there are no items other than data hierarchy on the axis
43337
- you want to sort on, this can be empty.
43340
+ * items that make up the row or column that you want to sort on. If a string is used instead of a PivotItem,
43341
+ * the string represents the ID of the PivotItem. If there are no items other than data hierarchy on the axis
43342
+ * you want to sort on, this can be empty.
43338
43343
  */
43339
43344
  sortByValues(sortBy: "Ascending" | "Descending", valuesHierarchy: Excel.DataPivotHierarchy, pivotItemScope?: Array<PivotItem | string>): void;
43340
43345
  /**
@@ -56398,13 +56403,13 @@ declare namespace Excel {
56398
56403
  */
56399
56404
  enum Placement {
56400
56405
  /**
56401
- * The object is moved with the cells.
56406
+ * The object is moved and sized with the cells.
56402
56407
  * @remarks
56403
56408
  * [Api set: ExcelApi 1.9]
56404
56409
  */
56405
56410
  twoCell = "TwoCell",
56406
56411
  /**
56407
- * The object is moved and sized with the cells.
56412
+ * The object is moved with the cells.
56408
56413
  * @remarks
56409
56414
  * [Api set: ExcelApi 1.9]
56410
56415
  */
@@ -57041,7 +57046,7 @@ declare namespace Excel {
57041
57046
  * [Api set: ExcelApiOnline 1.1]
57042
57047
  *
57043
57048
  * @param name The name of the sheet view to be created.
57044
- Throws an error when the provided name already exists, is empty, or is a name reserved by the worksheet.
57049
+ * Throws an error when the provided name already exists, is empty, or is a name reserved by the worksheet.
57045
57050
  * @returns The newly created sheet view object.
57046
57051
  */
57047
57052
  add(name: string): Excel.NamedSheetView;
@@ -62361,7 +62366,7 @@ declare namespace Excel {
62361
62366
  */
62362
62367
  name?: string;
62363
62368
  /**
62364
- * Specifies how bars and columns are positioned. Can be a value between 100 and 100. Applies only to 2-D bar and 2-D column charts.
62369
+ * Specifies how bars and columns are positioned. Can be a value between -100 and 100. Applies only to 2-D bar and 2-D column charts.
62365
62370
  *
62366
62371
  * @remarks
62367
62372
  * [Api set: ExcelApi 1.8]
@@ -63991,7 +63996,7 @@ declare namespace Excel {
63991
63996
  */
63992
63997
  altTextTitle?: string;
63993
63998
  /**
63994
- * Specifies if formatting will be automatically formatted when its refreshed or when fields are moved.
63999
+ * Specifies if formatting will be automatically formatted when it's refreshed or when fields are moved.
63995
64000
  *
63996
64001
  * @remarks
63997
64002
  * [Api set: ExcelApi 1.9]
@@ -68168,7 +68173,7 @@ declare namespace Excel {
68168
68173
  */
68169
68174
  name?: string;
68170
68175
  /**
68171
- * Specifies how bars and columns are positioned. Can be a value between 100 and 100. Applies only to 2-D bar and 2-D column charts.
68176
+ * Specifies how bars and columns are positioned. Can be a value between -100 and 100. Applies only to 2-D bar and 2-D column charts.
68172
68177
  *
68173
68178
  * @remarks
68174
68179
  * [Api set: ExcelApi 1.8]
@@ -70148,7 +70153,7 @@ declare namespace Excel {
70148
70153
  */
70149
70154
  altTextTitle?: string;
70150
70155
  /**
70151
- * Specifies if formatting will be automatically formatted when its refreshed or when fields are moved.
70156
+ * Specifies if formatting will be automatically formatted when it's refreshed or when fields are moved.
70152
70157
  *
70153
70158
  * @remarks
70154
70159
  * [Api set: ExcelApi 1.9]
@@ -76005,7 +76010,7 @@ declare namespace Excel {
76005
76010
  */
76006
76011
  name?: boolean;
76007
76012
  /**
76008
- * For EACH ITEM in the collection: Specifies how bars and columns are positioned. Can be a value between 100 and 100. Applies only to 2-D bar and 2-D column charts.
76013
+ * For EACH ITEM in the collection: Specifies how bars and columns are positioned. Can be a value between -100 and 100. Applies only to 2-D bar and 2-D column charts.
76009
76014
  *
76010
76015
  * @remarks
76011
76016
  * [Api set: ExcelApi 1.8]
@@ -76334,7 +76339,7 @@ declare namespace Excel {
76334
76339
  */
76335
76340
  name?: boolean;
76336
76341
  /**
76337
- * Specifies how bars and columns are positioned. Can be a value between 100 and 100. Applies only to 2-D bar and 2-D column charts.
76342
+ * Specifies how bars and columns are positioned. Can be a value between -100 and 100. Applies only to 2-D bar and 2-D column charts.
76338
76343
  *
76339
76344
  * @remarks
76340
76345
  * [Api set: ExcelApi 1.8]
@@ -79057,7 +79062,7 @@ declare namespace Excel {
79057
79062
  */
79058
79063
  altTextTitle?: boolean;
79059
79064
  /**
79060
- * Specifies if formatting will be automatically formatted when its refreshed or when fields are moved.
79065
+ * Specifies if formatting will be automatically formatted when it's refreshed or when fields are moved.
79061
79066
  *
79062
79067
  * @remarks
79063
79068
  * [Api set: ExcelApi 1.9]
office-js/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js",
3
- "version": "1.0.337",
3
+ "version": "1.0.339",
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": "3d98be5c2f3516797ee8d673cc3a8a0e1f896bb578764f88c80c4bd41a0ec3ce",
48
+ "typesPublisherContentHash": "55992e2b7457ee2c12bad9e10b5eeefd3b9ef3b385a95a380c0e0172e00432c8",
49
49
  "typeScriptVersion": "4.3"
50
50
  }