@types/office-js-preview 1.0.596 → 1.0.598

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: Tue, 20 May 2025 00:47:11 GMT
11
+ * Last updated: Thu, 22 May 2025 18:02:31 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -9286,8 +9286,6 @@ declare namespace Office {
9286
9286
  InformationalMessage = "informationalMessage",
9287
9287
  /**
9288
9288
  * The notification message is an error message.
9289
- *
9290
- * **Important**: Only the `InformationalMessage` type is supported in Outlook on Android and on iOS.
9291
9289
  */
9292
9290
  ErrorMessage = "errorMessage",
9293
9291
  /**
@@ -136631,7 +136629,8 @@ declare namespace PowerPoint {
136631
136629
  * @param index Optional. Specifies the zero-based index where the new columns are added. Existing columns starting at the index location are shifted right. If the index value is undefined, null, -1, or greater than the number of columns in the table, the new columns are added at the end of the table.
136632
136630
  * @param count Optional. The number of columns to add. If the value is undefined or 0, only one column is added.
136633
136631
  */
136634
- add(index?: number | null, count?: number): void;
136632
+ // eslint-disable-next-line @definitelytyped/redundant-undefined
136633
+ add(index?: number | null | undefined, count?: number | undefined): void;
136635
136634
  /**
136636
136635
  * Deletes the specified columns from the collection.
136637
136636
  *
@@ -136836,7 +136835,8 @@ declare namespace PowerPoint {
136836
136835
  * @param index Optional. Specifies the zero-based index where the new rows are added. Existing rows starting at the index location are shifted down. If the index value is undefined, null, -1, or greater than the number of rows in the table, the new rows are added at the end of the table.
136837
136836
  * @param count Optional. The number of rows to add. If the value is undefined or 0, only one row is added.
136838
136837
  */
136839
- add(index?: number | null, count?: number): void;
136838
+ // eslint-disable-next-line @definitelytyped/redundant-undefined
136839
+ add(index?: number | null | undefined, count?: number | undefined): void;
136840
136840
  /**
136841
136841
  * Deletes the specified rows from the collection.
136842
136842
  *
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.596",
3
+ "version": "1.0.598",
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",
@@ -46,7 +46,7 @@
46
46
  "scripts": {},
47
47
  "dependencies": {},
48
48
  "peerDependencies": {},
49
- "typesPublisherContentHash": "72466b9f1733fd5a3496c7ca41c5121f0bb1083aa4c16fad37ddedb324c09e8f",
49
+ "typesPublisherContentHash": "40dad4b49ba22e299374e6fec5de53d9dc37740f27015c536c5d65daa58fcde3",
50
50
  "typeScriptVersion": "5.1",
51
51
  "nonNpm": true
52
52
  }