@types/office-js 1.0.509 → 1.0.511
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 +1 -1
- office-js/index.d.ts +16 -13
- 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:
|
|
11
|
+
* Last updated: Thu, 12 Jun 2025 21:33:34 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -24822,6 +24822,10 @@ declare namespace Excel {
|
|
|
24822
24822
|
tooManyCells = "TooManyCells",
|
|
24823
24823
|
/**
|
|
24824
24824
|
* An error caused by a cell's formula evaluating to a lambda value. Displays as error type #CALC! in Excel.
|
|
24825
|
+
*
|
|
24826
|
+
* Warning: `lambdaInCell` was deprecated in ExcelApi 1.19.
|
|
24827
|
+
*
|
|
24828
|
+
* @deprecated Deprecated since ExcelApi 1.19.
|
|
24825
24829
|
*
|
|
24826
24830
|
* @remarks
|
|
24827
24831
|
* [Api set: ExcelApi 1.16]
|
|
@@ -25081,7 +25085,7 @@ declare namespace Excel {
|
|
|
25081
25085
|
*/
|
|
25082
25086
|
enum FunctionCellValueType {
|
|
25083
25087
|
/**
|
|
25084
|
-
* Reference to a JavaScript custom function. For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-overview
|
|
25088
|
+
* Reference to a JavaScript custom function. For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-overview | Create custom functions in Excel}.
|
|
25085
25089
|
*
|
|
25086
25090
|
* @remarks
|
|
25087
25091
|
* [Api set: ExcelApi 1.19]
|
|
@@ -25126,14 +25130,14 @@ declare namespace Excel {
|
|
|
25126
25130
|
*/
|
|
25127
25131
|
functionType: FunctionCellValueType.javaScriptReference | "JavaScriptReference";
|
|
25128
25132
|
/**
|
|
25129
|
-
* Represents the namespace used by the custom function. For more information, see {@link https://learn.microsoft.com/javascript/api/manifest/namespace
|
|
25133
|
+
* Represents the namespace used by the custom function. For more information, see {@link https://learn.microsoft.com/javascript/api/manifest/namespace | Manifest reference: Namespace}.
|
|
25130
25134
|
*
|
|
25131
25135
|
* @remarks
|
|
25132
25136
|
* [Api set: ExcelApi 1.19]
|
|
25133
25137
|
*/
|
|
25134
25138
|
namespace: string;
|
|
25135
25139
|
/**
|
|
25136
|
-
* Represents the ID of the custom function. For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id
|
|
25140
|
+
* Represents the ID of the custom function. For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID}.
|
|
25137
25141
|
*
|
|
25138
25142
|
* @remarks
|
|
25139
25143
|
* [Api set: ExcelApi 1.19]
|
|
@@ -37171,7 +37175,7 @@ declare namespace Excel {
|
|
|
37171
37175
|
getColumnsBefore(count?: number): Excel.Range;
|
|
37172
37176
|
/**
|
|
37173
37177
|
* 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.
|
|
37174
|
-
|
|
37178
|
+
Note: This API returns an `ItemNotFound` error if no dependents are found.
|
|
37175
37179
|
*
|
|
37176
37180
|
* @remarks
|
|
37177
37181
|
* [Api set: ExcelApi 1.15]
|
|
@@ -37179,7 +37183,7 @@ declare namespace Excel {
|
|
|
37179
37183
|
getDependents(): Excel.WorkbookRangeAreas;
|
|
37180
37184
|
/**
|
|
37181
37185
|
* 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.
|
|
37182
|
-
|
|
37186
|
+
Note: This API returns an `ItemNotFound` error if no dependents are found.
|
|
37183
37187
|
*
|
|
37184
37188
|
* @remarks
|
|
37185
37189
|
* [Api set: ExcelApi 1.13]
|
|
@@ -37187,7 +37191,7 @@ declare namespace Excel {
|
|
|
37187
37191
|
getDirectDependents(): Excel.WorkbookRangeAreas;
|
|
37188
37192
|
/**
|
|
37189
37193
|
* 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.
|
|
37190
|
-
|
|
37194
|
+
Note: This API returns an `ItemNotFound` error if no precedents are found.
|
|
37191
37195
|
*
|
|
37192
37196
|
* @remarks
|
|
37193
37197
|
* [Api set: ExcelApi 1.12]
|
|
@@ -37240,7 +37244,6 @@ declare namespace Excel {
|
|
|
37240
37244
|
getExtendedRange(direction: "Left" | "Right" | "Up" | "Down", activeCell?: Range | string): Excel.Range;
|
|
37241
37245
|
/**
|
|
37242
37246
|
* Renders the range as a Base64-encoded PNG image.
|
|
37243
|
-
**Important**: This API is currently unsupported in Excel for Mac. Visit {@link https://github.com/OfficeDev/office-js/issues/235 | OfficeDev/office-js Issue #235} for the current status.
|
|
37244
37247
|
*
|
|
37245
37248
|
* @remarks
|
|
37246
37249
|
* [Api set: ExcelApi 1.7]
|
|
@@ -37316,7 +37319,7 @@ declare namespace Excel {
|
|
|
37316
37319
|
getPivotTables(fullyContained?: boolean): Excel.PivotTableScopedCollection;
|
|
37317
37320
|
/**
|
|
37318
37321
|
* 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.
|
|
37319
|
-
|
|
37322
|
+
Note: This API returns an `ItemNotFound` error if no precedents are found.
|
|
37320
37323
|
*
|
|
37321
37324
|
* @remarks
|
|
37322
37325
|
* [Api set: ExcelApi 1.14]
|
|
@@ -55465,7 +55468,7 @@ declare namespace Excel {
|
|
|
55465
55468
|
readonly lastRefreshed: Date;
|
|
55466
55469
|
/**
|
|
55467
55470
|
* Gets the ID of the custom function that is called on demand to resolve or refresh the `LinkedEntityCellValue` objects of the linked entity data domain defined by Office Add-ins.
|
|
55468
|
-
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID
|
|
55471
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID}.
|
|
55469
55472
|
This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
|
|
55470
55473
|
*
|
|
55471
55474
|
* @remarks
|
|
@@ -55761,7 +55764,7 @@ declare namespace Excel {
|
|
|
55761
55764
|
id: string;
|
|
55762
55765
|
/**
|
|
55763
55766
|
* Specifies the ID of the custom function that will be called on demand to resolve or refresh the `LinkedEntityCellValue` objects of this linked entity data domain.
|
|
55764
|
-
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID
|
|
55767
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID}.
|
|
55765
55768
|
*
|
|
55766
55769
|
* @remarks
|
|
55767
55770
|
* [Api set: ExcelApi 1.19]
|
|
@@ -78829,7 +78832,7 @@ declare namespace Excel {
|
|
|
78829
78832
|
lastRefreshed?: Date;
|
|
78830
78833
|
/**
|
|
78831
78834
|
* Gets the ID of the custom function that is called on demand to resolve or refresh the `LinkedEntityCellValue` objects of the linked entity data domain defined by Office Add-ins.
|
|
78832
|
-
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID
|
|
78835
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID}.
|
|
78833
78836
|
This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
|
|
78834
78837
|
*
|
|
78835
78838
|
* @remarks
|
|
@@ -90213,7 +90216,7 @@ declare namespace Excel {
|
|
|
90213
90216
|
lastRefreshed?: boolean;
|
|
90214
90217
|
/**
|
|
90215
90218
|
* Gets the ID of the custom function that is called on demand to resolve or refresh the `LinkedEntityCellValue` objects of the linked entity data domain defined by Office Add-ins.
|
|
90216
|
-
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID
|
|
90219
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID}.
|
|
90217
90220
|
This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
|
|
90218
90221
|
*
|
|
90219
90222
|
* @remarks
|
|
@@ -90301,7 +90304,7 @@ declare namespace Excel {
|
|
|
90301
90304
|
lastRefreshed?: boolean;
|
|
90302
90305
|
/**
|
|
90303
90306
|
* For EACH ITEM in the collection: Gets the ID of the custom function that is called on demand to resolve or refresh the `LinkedEntityCellValue` objects of the linked entity data domain defined by Office Add-ins.
|
|
90304
|
-
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID
|
|
90307
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-json-autogeneration#id | Autogenerate JSON metadata for custom functions: ID}.
|
|
90305
90308
|
This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
|
|
90306
90309
|
*
|
|
90307
90310
|
* @remarks
|
office-js/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.511",
|
|
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": "
|
|
49
|
+
"typesPublisherContentHash": "474b74ab8da0d5816ee78d20713702ef8bd2c2c6391776fa803ad4bd7c6e9492",
|
|
50
50
|
"typeScriptVersion": "5.1"
|
|
51
51
|
}
|