@types/office-js-preview 1.0.595 → 1.0.597

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, 13 May 2025 18:40:21 GMT
11
+ * Last updated: Thu, 22 May 2025 02:15:00 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -33845,8 +33845,9 @@ declare namespace Excel {
33845
33845
  /**
33846
33846
  * Determines whether Excel will delay the batch request until the user exits cell edit mode.
33847
33847
  *
33848
- * When false, if the user is in cell edit when the batch request is processed by the host, the batch will automatically fail.
33849
- * When true, the batch request will be executed immediately if the user is not in cell edit mode, but if the user is in cell edit mode the batch request will be delayed until the user exits cell edit mode.
33848
+ * When `false`, if the user is in cell edit when the batch request is processed by the host, the batch automatically fails.
33849
+ * When `true`, the batch request is executed immediately if the user is not in cell edit mode, but if the user is in cell edit mode then the batch request is delayed until the user exits cell edit mode.
33850
+ * The default behavior with no `delayForCellEdit` property specified is equivalent to when it is `false`.
33850
33851
  */
33851
33852
  delayForCellEdit?: boolean;
33852
33853
  }
@@ -136630,7 +136631,8 @@ declare namespace PowerPoint {
136630
136631
  * @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.
136631
136632
  * @param count Optional. The number of columns to add. If the value is undefined or 0, only one column is added.
136632
136633
  */
136633
- add(index?: number | null, count?: number): void;
136634
+ // eslint-disable-next-line @definitelytyped/redundant-undefined
136635
+ add(index?: number | null | undefined, count?: number | undefined): void;
136634
136636
  /**
136635
136637
  * Deletes the specified columns from the collection.
136636
136638
  *
@@ -136835,7 +136837,8 @@ declare namespace PowerPoint {
136835
136837
  * @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.
136836
136838
  * @param count Optional. The number of rows to add. If the value is undefined or 0, only one row is added.
136837
136839
  */
136838
- add(index?: number | null, count?: number): void;
136840
+ // eslint-disable-next-line @definitelytyped/redundant-undefined
136841
+ add(index?: number | null | undefined, count?: number | undefined): void;
136839
136842
  /**
136840
136843
  * Deletes the specified rows from the collection.
136841
136844
  *
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.595",
3
+ "version": "1.0.597",
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": "98b0e8659d47a30c4a1a857a12c53e45ddd6a4373a9fb2926d692d72353db210",
49
+ "typesPublisherContentHash": "9223aef8b4ad2a800be90ec368c622c0537ebc6b89422ec30720017d8e41a9c5",
50
50
  "typeScriptVersion": "5.1",
51
51
  "nonNpm": true
52
52
  }