@types/office-js 1.0.575 → 1.0.577

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
office-js/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for office-js (https://github.com/OfficeD
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Mon, 23 Feb 2026 19:24:54 GMT
11
+ * Last updated: Tue, 24 Feb 2026 19:25:51 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
office-js/index.d.ts CHANGED
@@ -4747,7 +4747,7 @@ declare namespace Office {
4747
4747
  *
4748
4748
  * @remarks
4749
4749
  *
4750
- * **Important**: In Outlook, `officeTheme` is supported starting in {@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1.14 | Mailbox requirement set 1.14}.
4750
+ * **Important**: In Outlook, `officeTheme` is supported starting in {@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14 | Mailbox requirement set 1.14}.
4751
4751
  * It isn't supported in Outlook add-ins that implement {@link https://learn.microsoft.com/office/dev/add-ins/develop/event-based-activation | event-based activation}.
4752
4752
  */
4753
4753
  officeTheme: OfficeTheme;
@@ -7623,7 +7623,7 @@ declare namespace Office {
7623
7623
  * </table>
7624
7624
  *
7625
7625
  * **Important**: In Outlook, the Office theme API is supported starting in
7626
- * {@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1.14 | Mailbox requirement set 1.14}.
7626
+ * {@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14 | Mailbox requirement set 1.14}.
7627
7627
  * It isn't supported in Outlook add-ins that implement {@link https://learn.microsoft.com/office/dev/add-ins/develop/event-based-activation | event-based activation}.
7628
7628
  */
7629
7629
  interface OfficeTheme {
@@ -7911,24 +7911,24 @@ declare namespace Office {
7911
7911
  *
7912
7912
  * The name of a setting is a string, while the value can be a string, number, boolean, null, object, or array.
7913
7913
  *
7914
- * The Settings object is automatically loaded as part of the Document object, and is available by calling the settings property of that object
7914
+ * The Settings object is automatically loaded as part of the `Document` object, and is available by calling the settings property of that object
7915
7915
  * when the add-in is activated.
7916
7916
  *
7917
- * The developer is responsible for calling the saveAsync method after adding or deleting settings to save the settings in the document.
7917
+ * The developer is responsible for calling the `saveAsync` method after adding or deleting settings to save the settings in the document.
7918
7918
  */
7919
7919
  interface Settings {
7920
7920
  /**
7921
- * Adds an event handler for the settingsChanged event.
7921
+ * Adds an event handler for the `settingsChanged` event.
7922
7922
  *
7923
- * **Important**: Your add-in's code can register a handler for the settingsChanged event when the add-in is running with any Excel client, but
7923
+ * **Important**: Your add-in's code can register a handler for the `settingsChanged` event when the add-in is running with any Excel client, but
7924
7924
  * the event will fire only when the add-in is loaded with a spreadsheet that is opened in Excel on the web, and more than one user is editing the
7925
- * spreadsheet (coauthoring). Therefore, effectively the settingsChanged event is supported only in Excel on the web in coauthoring scenarios.
7925
+ * spreadsheet (coauthoring). Therefore, effectively the `settingsChanged` event is supported only in Excel on the web in coauthoring scenarios.
7926
7926
  *
7927
7927
  * @remarks
7928
7928
  *
7929
7929
  * **Requirement set**: {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
7930
7930
  *
7931
- * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
7931
+ * You can add multiple event handlers for the specified `eventType` as long as the name of each event handler function is unique.
7932
7932
  *
7933
7933
  * @param eventType Specifies the type of event to add. Required.
7934
7934
  * @param handler The event handler function to add, whose only parameter is of type {@link Office.SettingsChangedEventArgs}. Required.
@@ -7950,27 +7950,27 @@ declare namespace Office {
7950
7950
  * </tr>
7951
7951
  * <tr>
7952
7952
  * <td><code>AsyncResult.error</code></td>
7953
- * <td>Access an Error object that provides error information if the operation failed.</td>
7953
+ * <td>Access an <code>Error</code> object that provides error information if the operation failed.</td>
7954
7954
  * </tr>
7955
7955
  * <tr>
7956
7956
  * <td><code>AsyncResult.asyncContext</code></td>
7957
- * <td>Define an item of any type that's returned in the AsyncResult object without being altered.</td>
7957
+ * <td>Define an item of any type that's returned in the <code>AsyncResult</code> object without being altered.</td>
7958
7958
  * </tr>
7959
7959
  * </table>
7960
7960
  */
7961
7961
  addHandlerAsync(eventType: Office.EventType, handler: any, options?: Office.AsyncContextOptions, callback?: (result: AsyncResult<void>) => void): void;
7962
7962
  /**
7963
- * Adds an event handler for the settingsChanged event.
7963
+ * Adds an event handler for the `settingsChanged` event.
7964
7964
  *
7965
- * **Important**: Your add-in's code can register a handler for the settingsChanged event when the add-in is running with any Excel client, but
7965
+ * **Important**: Your add-in's code can register a handler for the `settingsChanged` event when the add-in is running with any Excel client, but
7966
7966
  * the event will fire only when the add-in is loaded with a spreadsheet that is opened in Excel on the web, and more than one user is editing the
7967
- * spreadsheet (coauthoring). Therefore, effectively the settingsChanged event is supported only in Excel on the web in coauthoring scenarios.
7967
+ * spreadsheet (coauthoring). Therefore, effectively the `settingsChanged` event is supported only in Excel on the web in coauthoring scenarios.
7968
7968
  *
7969
7969
  * @remarks
7970
7970
  *
7971
7971
  * **Requirement set**: {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
7972
7972
  *
7973
- * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
7973
+ * You can add multiple event handlers for the specified `eventType` as long as the name of each event handler function is unique.
7974
7974
  *
7975
7975
  * @param eventType Specifies the type of event to add. Required.
7976
7976
  * @param handler The event handler function to add, whose only parameter is of type {@link Office.SettingsChangedEventArgs}. Required.
@@ -7991,11 +7991,11 @@ declare namespace Office {
7991
7991
  * </tr>
7992
7992
  * <tr>
7993
7993
  * <td><code>AsyncResult.error</code></td>
7994
- * <td>Access an Error object that provides error information if the operation failed.</td>
7994
+ * <td>Access an <code>Error</code> object that provides error information if the operation failed.</td>
7995
7995
  * </tr>
7996
7996
  * <tr>
7997
7997
  * <td><code>AsyncResult.asyncContext</code></td>
7998
- * <td>Define an item of any type that's returned in the AsyncResult object without being altered.</td>
7998
+ * <td>Define an item of any type that's returned in the <code>AsyncResult</code> object without being altered.</td>
7999
7999
  * </tr>
8000
8000
  * </table>
8001
8001
  */
@@ -8021,10 +8021,10 @@ declare namespace Office {
8021
8021
  * This method is useful in Excel, Word, and PowerPoint coauthoring scenarios when multiple instances of the same add-in are working against
8022
8022
  * the same document. Because each add-in is working against an in-memory copy of the settings loaded from the document at the time the user
8023
8023
  * opened it, the settings values used by each user can get out of sync. This can happen whenever an instance of the add-in calls the
8024
- * Settings.saveAsync method to persist all of that user's settings to the document. Calling the refreshAsync method from the event handler
8025
- * for the settingsChanged event of the add-in will refresh the settings values for all users.
8024
+ * `Settings.saveAsync` method to persist all of that user's settings to the document. Calling the `refreshAsync` method from the event handler
8025
+ * for the `settingsChanged` event of the add-in will refresh the settings values for all users.
8026
8026
  *
8027
- * In the callback function passed to the refreshAsync method, you can use the properties of the AsyncResult object to return the following
8027
+ * In the callback function passed to the `refreshAsync` method, you can use the properties of the `AsyncResult` object to return the following
8028
8028
  * information.
8029
8029
  *
8030
8030
  * <table>
@@ -8034,7 +8034,7 @@ declare namespace Office {
8034
8034
  * </tr>
8035
8035
  * <tr>
8036
8036
  * <td><code>AsyncResult.value</code></td>
8037
- * <td>Access a Settings object with the refreshed values.</td>
8037
+ * <td>Access a <code>Settings</code> object with the refreshed values.</td>
8038
8038
  * </tr>
8039
8039
  * <tr>
8040
8040
  * <td><code>AsyncResult.status</code></td>
@@ -8042,11 +8042,11 @@ declare namespace Office {
8042
8042
  * </tr>
8043
8043
  * <tr>
8044
8044
  * <td><code>AsyncResult.error</code></td>
8045
- * <td>Access an Error object that provides error information if the operation failed.</td>
8045
+ * <td>Access an <code>Error</code> object that provides error information if the operation failed.</td>
8046
8046
  * </tr>
8047
8047
  * <tr>
8048
8048
  * <td><code>AsyncResult.asyncContext</code></td>
8049
- * <td>Define an item of any type that's returned in the AsyncResult object without being altered.</td>
8049
+ * <td>Define an item of any type that's returned in the <code>AsyncResult</code> object without being altered.</td>
8050
8050
  * </tr>
8051
8051
  * </table>
8052
8052
  *
@@ -8057,33 +8057,33 @@ declare namespace Office {
8057
8057
  /**
8058
8058
  * Removes the specified setting.
8059
8059
  *
8060
- * **Important**: Be aware that the Settings.remove method affects only the in-memory copy of the settings property bag. To persist the removal of
8061
- * the specified setting in the document, at some point after calling the Settings.remove method and before the add-in is closed, you must
8062
- * call the Settings.saveAsync method.
8060
+ * **Important**: Be aware that the `Settings.remove` method affects only the in-memory copy of the settings property bag. To persist the removal of
8061
+ * the specified setting in the document, at some point after calling the `Settings.remove` method and before the add-in is closed, you must
8062
+ * call the `Settings.saveAsync` method.
8063
8063
  *
8064
8064
  * @remarks
8065
8065
  *
8066
8066
  * **Requirement set**: {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#settings | Settings}
8067
8067
  *
8068
- * null is a valid value for a setting. Therefore, assigning null to the setting will not remove it from the settings property bag.
8068
+ * `null` is a valid value for a setting. Therefore, assigning `null` to the setting will not remove it from the settings property bag.
8069
8069
  *
8070
8070
  * @param settingName The case-sensitive name of the setting to remove.
8071
8071
  */
8072
8072
  remove(name: string): void;
8073
8073
  /**
8074
- * Removes an event handler for the settingsChanged event.
8074
+ * Removes an event handler for the `settingsChanged` event.
8075
8075
  *
8076
8076
  * @remarks
8077
8077
  *
8078
8078
  * **Requirement set**: {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
8079
8079
  *
8080
- * If the optional handler parameter is omitted when calling the removeHandlerAsync method, all event handlers for the specified eventType
8080
+ * If the optional handler parameter is omitted when calling the `removeHandlerAsync` method, all event handlers for the specified `eventType`
8081
8081
  * will be removed.
8082
8082
  *
8083
- * When the function you passed to the callback parameter executes, it receives an AsyncResult object that you can access from the callback
8083
+ * When the function you passed to the callback parameter executes, it receives an `AsyncResult` object that you can access from the callback
8084
8084
  * function's only parameter.
8085
8085
  *
8086
- * In the callback function passed to the removeHandlerAsync method, you can use the properties of the AsyncResult object to return the
8086
+ * In the callback function passed to the `removeHandlerAsync` method, you can use the properties of the `AsyncResult` object to return the
8087
8087
  * following information.
8088
8088
  *
8089
8089
  * <table>
@@ -8101,11 +8101,11 @@ declare namespace Office {
8101
8101
  * </tr>
8102
8102
  * <tr>
8103
8103
  * <td><code>AsyncResult.error</code></td>
8104
- * <td>Access an Error object that provides error information if the operation failed.</td>
8104
+ * <td>Access an <code>Error</code> object that provides error information if the operation failed.</td>
8105
8105
  * </tr>
8106
8106
  * <tr>
8107
8107
  * <td><code>AsyncResult.asyncContext</code></td>
8108
- * <td>Define an item of any type that's returned in the AsyncResult object without being altered.</td>
8108
+ * <td>Define an item of any type that's returned in the <code>AsyncResult</code> object without being altered.</td>
8109
8109
  * </tr>
8110
8110
  * </table>
8111
8111
  *
@@ -8115,19 +8115,19 @@ declare namespace Office {
8115
8115
  */
8116
8116
  removeHandlerAsync(eventType: Office.EventType, options?: RemoveHandlerOptions, callback?: (result: AsyncResult<void>) => void): void;
8117
8117
  /**
8118
- * Removes an event handler for the settingsChanged event.
8118
+ * Removes an event handler for the `settingsChanged` event.
8119
8119
  *
8120
8120
  * @remarks
8121
8121
  *
8122
8122
  * **Requirement set**: {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
8123
8123
  *
8124
- * If the optional handler parameter is omitted when calling the removeHandlerAsync method, all event handlers for the specified eventType
8124
+ * If the optional handler parameter is omitted when calling the `removeHandlerAsync` method, all event handlers for the specified `eventType`
8125
8125
  * will be removed.
8126
8126
  *
8127
- * When the function you passed to the callback parameter executes, it receives an AsyncResult object that you can access from the callback
8127
+ * When the function you passed to the callback parameter executes, it receives an `AsyncResult` object that you can access from the callback
8128
8128
  * function's only parameter.
8129
8129
  *
8130
- * In the callback function passed to the removeHandlerAsync method, you can use the properties of the AsyncResult object to return the
8130
+ * In the callback function passed to the `removeHandlerAsync` method, you can use the properties of the `AsyncResult` object to return the
8131
8131
  * following information.
8132
8132
  *
8133
8133
  * <table>
@@ -8145,11 +8145,11 @@ declare namespace Office {
8145
8145
  * </tr>
8146
8146
  * <tr>
8147
8147
  * <td><code>AsyncResult.error</code></td>
8148
- * <td>Access an Error object that provides error information if the operation failed.</td>
8148
+ * <td>Access an <code>Error</code> object that provides error information if the operation failed.</td>
8149
8149
  * </tr>
8150
8150
  * <tr>
8151
8151
  * <td><code>AsyncResult.asyncContext</code></td>
8152
- * <td>Define an item of any type that's returned in the AsyncResult object without being altered.</td>
8152
+ * <td>Define an item of any type that's returned in the <code>AsyncResult</code> object without being altered.</td>
8153
8153
  * </tr>
8154
8154
  * </table>
8155
8155
  *
@@ -8165,11 +8165,11 @@ declare namespace Office {
8165
8165
  * **Requirement set**: {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#settings | Settings}
8166
8166
  *
8167
8167
  * Any settings previously saved by an add-in are loaded when it is initialized, so during the lifetime of the session you can just use the
8168
- * set and get methods to work with the in-memory copy of the settings property bag. When you want to persist the settings so that they are
8169
- * available the next time the add-in is used, use the saveAsync method.
8168
+ * `set` and `get` methods to work with the in-memory copy of the settings property bag. When you want to persist the settings so that they are
8169
+ * available the next time the add-in is used, use the `saveAsync` method.
8170
8170
  *
8171
- * **Note**: The saveAsync method persists the in-memory settings property bag into the document file. However, the changes to the document file
8172
- * itself are saved only when the user (or AutoRecover setting) saves the document to the file system. The refreshAsync method is only useful
8171
+ * **Note**: The `saveAsync` method persists the in-memory settings property bag into the document file. However, the changes to the document file
8172
+ * itself are saved only when the user (or AutoRecover setting) saves the document to the file system. The `refreshAsync` method is only useful
8173
8173
  * in coauthoring scenarios when other instances of the same add-in might change the settings and those changes should be made available to
8174
8174
  * all instances.
8175
8175
  *
@@ -8188,11 +8188,11 @@ declare namespace Office {
8188
8188
  * </tr>
8189
8189
  * <tr>
8190
8190
  * <td><code>AsyncResult.error</code></td>
8191
- * <td>Access an Error object that provides error information if the operation failed.</td>
8191
+ * <td>Access an <code>Error</code> object that provides error information if the operation failed.</td>
8192
8192
  * </tr>
8193
8193
  * <tr>
8194
8194
  * <td><code>AsyncResult.asyncContext</code></td>
8195
- * <td>Define an item of any type that's returned in the AsyncResult object without being altered.</td>
8195
+ * <td>Define an item of any type that's returned in the <code>AsyncResult</code> object without being altered.</td>
8196
8196
  * </tr>
8197
8197
  * </table>
8198
8198
  *
@@ -8208,11 +8208,11 @@ declare namespace Office {
8208
8208
  * **Requirement set**: {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#settings | Settings}
8209
8209
  *
8210
8210
  * Any settings previously saved by an add-in are loaded when it is initialized, so during the lifetime of the session you can just use the
8211
- * set and get methods to work with the in-memory copy of the settings property bag. When you want to persist the settings so that they are
8212
- * available the next time the add-in is used, use the saveAsync method.
8211
+ * `set` and `get` methods to work with the in-memory copy of the settings property bag. When you want to persist the settings so that they are
8212
+ * available the next time the add-in is used, use the `saveAsync` method.
8213
8213
  *
8214
- * **Note**: The saveAsync method persists the in-memory settings property bag into the document file. However, the changes to the document file
8215
- * itself are saved only when the user (or AutoRecover setting) saves the document to the file system. The refreshAsync method is only useful
8214
+ * **Note**: The `saveAsync` method persists the in-memory settings property bag into the document file. However, the changes to the document file
8215
+ * itself are saved only when the user (or AutoRecover setting) saves the document to the file system. The `refreshAsync` method is only useful
8216
8216
  * in coauthoring scenarios when other instances of the same add-in might change the settings and those changes should be made available to
8217
8217
  * all instances.
8218
8218
  *
@@ -8231,11 +8231,11 @@ declare namespace Office {
8231
8231
  * </tr>
8232
8232
  * <tr>
8233
8233
  * <td><code>AsyncResult.error</code></td>
8234
- * <td>Access an Error object that provides error information if the operation failed.</td>
8234
+ * <td>Access an <code>Error</code> object that provides error information if the operation failed.</td>
8235
8235
  * </tr>
8236
8236
  * <tr>
8237
8237
  * <td><code>AsyncResult.asyncContext</code></td>
8238
- * <td>Define an item of any type that's returned in the AsyncResult object without being altered.</td>
8238
+ * <td>Define an item of any type that's returned in the <code>AsyncResult</code> object without being altered.</td>
8239
8239
  * </tr>
8240
8240
  * </table>
8241
8241
  *
@@ -8245,17 +8245,17 @@ declare namespace Office {
8245
8245
  /**
8246
8246
  * Sets or creates the specified setting.
8247
8247
  *
8248
- * **Important**: Be aware that the Settings.set method affects only the in-memory copy of the settings property bag.
8248
+ * **Important**: Be aware that the `Settings.set` method affects only the in-memory copy of the settings property bag.
8249
8249
  * To make sure that additions or changes to settings will be available to your add-in the next time the document is opened, at some point
8250
- * after calling the Settings.set method and before the add-in is closed, you must call the Settings.saveAsync method to persist settings in
8250
+ * after calling the `Settings.set` method and before the add-in is closed, you must call the `Settings.saveAsync` method to persist settings in
8251
8251
  * the document.
8252
8252
  *
8253
8253
  * @remarks
8254
8254
  *
8255
8255
  * **Requirement set**: {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#settings | Settings}
8256
8256
  *
8257
- * The set method creates a new setting of the specified name if it does not already exist, or sets an existing setting of the specified name
8258
- * in the in-memory copy of the settings property bag. After you call the Settings.saveAsync method, the value is stored in the document as
8257
+ * The `set` method creates a new setting of the specified name if it does not already exist, or sets an existing setting of the specified name
8258
+ * in the in-memory copy of the settings property bag. After you call the `Settings.saveAsync` method, the value is stored in the document as
8259
8259
  * the serialized JSON representation of its data type.
8260
8260
  *
8261
8261
  * @param settingName The case-sensitive name of the setting to set or create.
@@ -17926,11 +17926,11 @@ declare namespace Office {
17926
17926
  *
17927
17927
  * <table>
17928
17928
  * <tr><th>Event</th><th>Description</th><th>Minimum requirement set</th></tr>
17929
- * <tr><td>`DragAndDropEvent`</td><td>A message or file attachment in the Outlook client window is dragged then dropped into the task pane of an add-in.
17930
- * This event is only supported in Outlook on the web and the new Outlook on Windows.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5 | 1.5}</td></tr>
17931
- * <tr><td>`ItemChanged`</td><td>A different Outlook item is selected for viewing while the task pane is pinned.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5 | 1.5}</td></tr>
17932
- * <tr><td>`OfficeThemeChanged`</td><td>The OfficeTheme is changed in Outlook.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14 | 1.14}</td></tr>
17933
- * <tr><td>`SelectedItemsChanged`</td><td>One or more messages are selected or deselected.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-13 | 1.13}</td></tr>
17929
+ * <tr><td><code>DragAndDropEvent</code></td><td>A message or file attachment in the Outlook client window is dragged then dropped into the task pane of an add-in.
17930
+ * This event is only supported in Outlook on the web and the new Outlook on Windows.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5">1.5</a></td></tr>
17931
+ * <tr><td><code>ItemChanged</code></td><td>A different Outlook item is selected for viewing while the task pane is pinned.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5">1.5</a></td></tr>
17932
+ * <tr><td><code>OfficeThemeChanged</code></td><td>The OfficeTheme is changed in Outlook.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14">1.14</a></td></tr>
17933
+ * <tr><td><code>SelectedItemsChanged</code></td><td>One or more messages are selected or deselected.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-13">1.13</a></td></tr>
17934
17934
  * </table>
17935
17935
  *
17936
17936
  * @param eventType - The event that should invoke the handler.
@@ -17955,11 +17955,11 @@ declare namespace Office {
17955
17955
  *
17956
17956
  * <table>
17957
17957
  * <tr><th>Event</th><th>Description</th><th>Minimum requirement set</th></tr>
17958
- * <tr><td>`DragAndDropEvent`</td><td>A message or file attachment in the Outlook client window is dragged then dropped into the task pane of an add-in.
17959
- * This event is only supported in Outlook on the web and the new Outlook on Windows.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5 | 1.5}</td></tr>
17960
- * <tr><td>`ItemChanged`</td><td>A different Outlook item is selected for viewing while the task pane is pinned.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5 | 1.5}</td></tr>
17961
- * <tr><td>`OfficeThemeChanged`</td><td>The OfficeTheme is changed in Outlook.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14 | 1.14}</td></tr>
17962
- * <tr><td>`SelectedItemsChanged`</td><td>One or more messages are selected or deselected.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-13 | 1.13}</td></tr>
17958
+ * <tr><td><code>DragAndDropEvent</code></td><td>A message or file attachment in the Outlook client window is dragged then dropped into the task pane of an add-in.
17959
+ * This event is only supported in Outlook on the web and the new Outlook on Windows.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5">1.5</a></td></tr>
17960
+ * <tr><td><code>ItemChanged</code></td><td>A different Outlook item is selected for viewing while the task pane is pinned.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5">1.5</a></td></tr>
17961
+ * <tr><td><code>OfficeThemeChanged</code></td><td>The OfficeTheme is changed in Outlook.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14">1.14</a></td></tr>
17962
+ * <tr><td><code>SelectedItemsChanged</code></td><td>One or more messages are selected or deselected.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-13">1.13</a></td></tr>
17963
17963
  * </table>
17964
17964
  *
17965
17965
  * @param eventType - The event that should invoke the handler.
@@ -18851,11 +18851,11 @@ declare namespace Office {
18851
18851
  *
18852
18852
  * <table>
18853
18853
  * <tr><th>Event</th><th>Description</th><th>Minimum requirement set</th></tr>
18854
- * <tr><td>`DragAndDropEvent`</td><td>A message or file attachment in the Outlook client window is dragged then dropped into the task pane of an add-in.
18855
- * This event is only supported in Outlook on the web and the new Outlook on Windows.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5 | 1.5}</td></tr>
18856
- * <tr><td>`ItemChanged`</td><td>A different Outlook item is selected for viewing while the task pane is pinned.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5 | 1.5}</td></tr>
18857
- * <tr><td>`OfficeThemeChanged`</td><td>The OfficeTheme is changed in Outlook.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14 | 1.14}</td></tr>
18858
- * <tr><td>`SelectedItemsChanged`</td><td>One or more messages are selected or deselected.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-13 | 1.13}</td></tr>
18854
+ * <tr><td><code>DragAndDropEvent</code></td><td>A message or file attachment in the Outlook client window is dragged then dropped into the task pane of an add-in.
18855
+ * This event is only supported in Outlook on the web and the new Outlook on Windows.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5">1.5</a></td></tr>
18856
+ * <tr><td><code>ItemChanged</code></td><td>A different Outlook item is selected for viewing while the task pane is pinned.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5">1.5</a></td></tr>
18857
+ * <tr><td><code>OfficeThemeChanged</code></td><td>The OfficeTheme is changed in Outlook.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14">1.14</a></td></tr>
18858
+ * <tr><td><code>SelectedItemsChanged</code></td><td>One or more messages are selected or deselected.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-13">1.13</a></td></tr>
18859
18859
  * </table>
18860
18860
  *
18861
18861
  * @param eventType - The event that should revoke the handler.
@@ -18878,11 +18878,11 @@ declare namespace Office {
18878
18878
  *
18879
18879
  * <table>
18880
18880
  * <tr><th>Event</th><th>Description</th><th>Minimum requirement set</th></tr>
18881
- * <tr><td>`DragAndDropEvent`</td><td>A message or file attachment in the Outlook client window is dragged then dropped into the task pane of an add-in.
18882
- * This event is only supported in Outlook on the web and the new Outlook on Windows.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5 | 1.5}</td></tr>
18883
- * <tr><td>`ItemChanged`</td><td>A different Outlook item is selected for viewing while the task pane is pinned.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5 | 1.5}</td></tr>
18884
- * <tr><td>`OfficeThemeChanged`</td><td>The OfficeTheme is changed in Outlook.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14 | 1.14}</td></tr>
18885
- * <tr><td>`SelectedItemsChanged`</td><td>One or more messages are selected or deselected.</td><td>{@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-13 | 1.13}</td></tr>
18881
+ * <tr><td><code>DragAndDropEvent</code></td><td>A message or file attachment in the Outlook client window is dragged then dropped into the task pane of an add-in.
18882
+ * This event is only supported in Outlook on the web and the new Outlook on Windows.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5">1.5</a></td></tr>
18883
+ * <tr><td><code>ItemChanged</code></td><td>A different Outlook item is selected for viewing while the task pane is pinned.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-5">1.5</a></td></tr>
18884
+ * <tr><td><code>OfficeThemeChanged</code></td><td>The OfficeTheme is changed in Outlook.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-14">1.14</a></td></tr>
18885
+ * <tr><td><code>SelectedItemsChanged</code></td><td>One or more messages are selected or deselected.</td><td><a href="https://learn.microsoft.com/javascript/api/requirement-sets/outlook/outlook-requirement-set-1-13">1.13</a></td></tr>
18886
18886
  * </table>
18887
18887
  *
18888
18888
  * @param eventType - The event that should revoke the handler.
office-js/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js",
3
- "version": "1.0.575",
3
+ "version": "1.0.577",
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",
@@ -46,6 +46,6 @@
46
46
  "scripts": {},
47
47
  "dependencies": {},
48
48
  "peerDependencies": {},
49
- "typesPublisherContentHash": "79824ebc6d1a1c3a83ddae29d0d6aa8a874ab1fa58043c82c7745e65857c44b6",
49
+ "typesPublisherContentHash": "9f7fb30564ef148081316fd9c06db737ee9c3f874e37aae427183fcc74e800c9",
50
50
  "typeScriptVersion": "5.2"
51
51
  }