@types/office-js 1.0.569 → 1.0.570
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 +7 -2
- 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: Mon, 02 Feb 2026 23:47:21 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -35796,6 +35796,7 @@ declare namespace Excel {
|
|
|
35796
35796
|
readonly calculationEngineVersion: number;
|
|
35797
35797
|
/**
|
|
35798
35798
|
* Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it.
|
|
35799
|
+
* This is a runtime property. The `calculationMode` setting is not persisted in the workbook.
|
|
35799
35800
|
*
|
|
35800
35801
|
* @remarks
|
|
35801
35802
|
* [Api set: ExcelApi 1.1 for get, 1.8 for set]
|
|
@@ -36349,13 +36350,12 @@ declare namespace Excel {
|
|
|
36349
36350
|
* Inserts the specified worksheets from a source workbook into the current workbook.
|
|
36350
36351
|
|
|
36351
36352
|
The `extensionHardening` Windows registry key affects this API. The file extension defined by the `base64File` param must match the real file type of the inserted file. If `extensionHardening` is set to deny mismatches and the file extension does not match the real file type, this API throws the following error: "This operation is not allowed due to the extension hardening policy."
|
|
36352
|
-
|
|
36353
|
-
**Note**: This API is currently only supported for Office on Windows, Mac, and the web.
|
|
36354
36353
|
*
|
|
36355
36354
|
* @remarks
|
|
36356
36355
|
* [Api set: ExcelApi 1.13]
|
|
36357
36356
|
*
|
|
36358
36357
|
* This API is currently only supported for Office on Windows, Mac, and the web.
|
|
36358
|
+
* In Excel on the web, this API doesn't support inserting charts, comments, PivotTables, or slicers.
|
|
36359
36359
|
*
|
|
36360
36360
|
* @param base64File Required. The Base64-encoded string representing the source workbook file.
|
|
36361
36361
|
* @param options Optional. The options that define which worksheets to insert and where in the workbook the new worksheets will be inserted. By default, all the worksheets from the source workbook are inserted at the end of the current workbook.
|
|
@@ -36815,6 +36815,7 @@ declare namespace Excel {
|
|
|
36815
36815
|
evaluate(name: string): OfficeExtension.ClientResult<any>;
|
|
36816
36816
|
/**
|
|
36817
36817
|
* Finds all occurrences of the given string based on the criteria specified and returns them as a `RangeAreas` object, comprising one or more rectangular ranges.
|
|
36818
|
+
* Content in hidden worksheets is not returned.
|
|
36818
36819
|
*
|
|
36819
36820
|
* @remarks
|
|
36820
36821
|
* [Api set: ExcelApi 1.9]
|
|
@@ -36826,6 +36827,7 @@ declare namespace Excel {
|
|
|
36826
36827
|
findAll(text: string, criteria: Excel.WorksheetSearchCriteria): Excel.RangeAreas;
|
|
36827
36828
|
/**
|
|
36828
36829
|
* Finds all occurrences of the given string based on the criteria specified and returns them as a `RangeAreas` object, comprising one or more rectangular ranges.
|
|
36830
|
+
* Content in hidden worksheets is not returned.
|
|
36829
36831
|
*
|
|
36830
36832
|
* @remarks
|
|
36831
36833
|
* [Api set: ExcelApi 1.9]
|
|
@@ -69455,6 +69457,7 @@ declare namespace Excel {
|
|
|
69455
69457
|
iterativeCalculation?: Excel.Interfaces.IterativeCalculationUpdateData;
|
|
69456
69458
|
/**
|
|
69457
69459
|
* Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it.
|
|
69460
|
+
* This is a runtime property. The `calculationMode` setting is not persisted in the workbook.
|
|
69458
69461
|
*
|
|
69459
69462
|
* @remarks
|
|
69460
69463
|
* [Api set: ExcelApi 1.1 for get, 1.8 for set]
|
|
@@ -74992,6 +74995,7 @@ declare namespace Excel {
|
|
|
74992
74995
|
calculationEngineVersion?: number;
|
|
74993
74996
|
/**
|
|
74994
74997
|
* Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it.
|
|
74998
|
+
* This is a runtime property. The `calculationMode` setting is not persisted in the workbook.
|
|
74995
74999
|
*
|
|
74996
75000
|
* @remarks
|
|
74997
75001
|
* [Api set: ExcelApi 1.1 for get, 1.8 for set]
|
|
@@ -82545,6 +82549,7 @@ declare namespace Excel {
|
|
|
82545
82549
|
calculationEngineVersion?: boolean;
|
|
82546
82550
|
/**
|
|
82547
82551
|
* Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it.
|
|
82552
|
+
* This is a runtime property. The `calculationMode` setting is not persisted in the workbook.
|
|
82548
82553
|
*
|
|
82549
82554
|
* @remarks
|
|
82550
82555
|
* [Api set: ExcelApi 1.1 for get, 1.8 for set]
|
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.570",
|
|
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": "c9da67838d0c597c47ee0d5fd5d2562c8a54e5780e3993b4ddeb6cdbbb76e512",
|
|
50
50
|
"typeScriptVersion": "5.2"
|
|
51
51
|
}
|