@types/office-js 1.0.392 → 1.0.393

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: Fri, 24 May 2024 23:36:04 GMT
11
+ * Last updated: Fri, 31 May 2024 21:07:10 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
office-js/index.d.ts CHANGED
@@ -31852,7 +31852,7 @@ declare namespace Excel {
31852
31852
  */
31853
31853
  readonly protected: boolean;
31854
31854
  /**
31855
- * Protects a workbook. Fails if the workbook has been protected.
31855
+ * Protects the workbook. Fails if the workbook has been protected.
31856
31856
  *
31857
31857
  * @remarks
31858
31858
  * [Api set: ExcelApi 1.7]
@@ -31861,7 +31861,7 @@ declare namespace Excel {
31861
31861
  */
31862
31862
  protect(password?: string): void;
31863
31863
  /**
31864
- * Unprotects a workbook.
31864
+ * Unprotects the workbook.
31865
31865
  *
31866
31866
  * @remarks
31867
31867
  * [Api set: ExcelApi 1.7]
@@ -32057,7 +32057,7 @@ declare namespace Excel {
32057
32057
  */
32058
32058
  readonly id: string;
32059
32059
  /**
32060
- * The display name of the worksheet.
32060
+ * The display name of the worksheet. The name must be fewer than 32 characters.
32061
32061
  *
32062
32062
  * @remarks
32063
32063
  * [Api set: ExcelApi 1.1]
@@ -33609,6 +33609,7 @@ declare namespace Excel {
33609
33609
  getColumnsBefore(count?: number): Excel.Range;
33610
33610
  /**
33611
33611
  * Returns a `WorkbookRangeAreas` object that represents the range containing all the dependent cells of a specified range in the same worksheet or across multiple worksheets.
33612
+ * Note: This API returns an `ItemNotFound` error if no dependents are found.
33612
33613
  *
33613
33614
  * @remarks
33614
33615
  * [Api set: ExcelApi 1.15]
@@ -33616,6 +33617,7 @@ declare namespace Excel {
33616
33617
  getDependents(): Excel.WorkbookRangeAreas;
33617
33618
  /**
33618
33619
  * Returns a `WorkbookRangeAreas` object that represents the range containing all the direct dependent cells of a specified range in the same worksheet or across multiple worksheets.
33620
+ * Note: This API returns an `ItemNotFound` error if no dependents are found.
33619
33621
  *
33620
33622
  * @remarks
33621
33623
  * [Api set: ExcelApi 1.13]
@@ -33623,6 +33625,7 @@ declare namespace Excel {
33623
33625
  getDirectDependents(): Excel.WorkbookRangeAreas;
33624
33626
  /**
33625
33627
  * Returns a `WorkbookRangeAreas` object that represents the range containing all the direct precedent cells of a specified range in the same worksheet or across multiple worksheets.
33628
+ * Note: This API returns an `ItemNotFound` error if no precedents are found.
33626
33629
  *
33627
33630
  * @remarks
33628
33631
  * [Api set: ExcelApi 1.12]
@@ -33740,6 +33743,7 @@ declare namespace Excel {
33740
33743
  getPivotTables(fullyContained?: boolean): Excel.PivotTableScopedCollection;
33741
33744
  /**
33742
33745
  * Returns a `WorkbookRangeAreas` object that represents the range containing all the precedent cells of a specified range in the same worksheet or across multiple worksheets.
33746
+ * Note: This API returns an `ItemNotFound` error if no precedents are found.
33743
33747
  *
33744
33748
  * @remarks
33745
33749
  * [Api set: ExcelApi 1.14]
@@ -62679,7 +62683,7 @@ declare namespace Excel {
62679
62683
  */
62680
62684
  enableCalculation?: boolean;
62681
62685
  /**
62682
- * The display name of the worksheet.
62686
+ * The display name of the worksheet. The name must be fewer than 32 characters.
62683
62687
  *
62684
62688
  * @remarks
62685
62689
  * [Api set: ExcelApi 1.1]
@@ -67897,7 +67901,7 @@ declare namespace Excel {
67897
67901
  */
67898
67902
  id?: string;
67899
67903
  /**
67900
- * The display name of the worksheet.
67904
+ * The display name of the worksheet. The name must be fewer than 32 characters.
67901
67905
  *
67902
67906
  * @remarks
67903
67907
  * [Api set: ExcelApi 1.1]
@@ -74594,7 +74598,7 @@ declare namespace Excel {
74594
74598
  */
74595
74599
  id?: boolean;
74596
74600
  /**
74597
- * The display name of the worksheet.
74601
+ * The display name of the worksheet. The name must be fewer than 32 characters.
74598
74602
  *
74599
74603
  * @remarks
74600
74604
  * [Api set: ExcelApi 1.1]
@@ -74722,7 +74726,7 @@ declare namespace Excel {
74722
74726
  */
74723
74727
  id?: boolean;
74724
74728
  /**
74725
- * For EACH ITEM in the collection: The display name of the worksheet.
74729
+ * For EACH ITEM in the collection: The display name of the worksheet. The name must be fewer than 32 characters.
74726
74730
  *
74727
74731
  * @remarks
74728
74732
  * [Api set: ExcelApi 1.1]
office-js/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js",
3
- "version": "1.0.392",
3
+ "version": "1.0.393",
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": "a52abd2e40a99ed7666e1c2eb34d34035757d86d01890f42e989b7049f523ad2",
48
+ "typesPublisherContentHash": "d0c009e0f7eaef88d5bdd0db3b1d1e570811c8b65b0a521f34681d6a1a95197c",
49
49
  "typeScriptVersion": "4.7"
50
50
  }