@types/office-js-preview 1.0.606 → 1.0.607
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-preview/README.md
CHANGED
|
@@ -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:
|
|
11
|
+
* Last updated: Thu, 12 Jun 2025 21:33:34 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -25607,8 +25607,10 @@ declare namespace Excel {
|
|
|
25607
25607
|
tooManyCells = "TooManyCells",
|
|
25608
25608
|
/**
|
|
25609
25609
|
* An error caused by a cell's formula evaluating to a lambda value. Displays as error type #CALC! in Excel.
|
|
25610
|
+
*
|
|
25611
|
+
* Warning: `lambdaInCell` was deprecated in ExcelApi 1.19.
|
|
25610
25612
|
*
|
|
25611
|
-
* @deprecated Deprecated since
|
|
25613
|
+
* @deprecated Deprecated since ExcelApi 1.19.
|
|
25612
25614
|
*
|
|
25613
25615
|
* @remarks
|
|
25614
25616
|
* [Api set: ExcelApi 1.16]
|
|
@@ -55646,6 +55648,7 @@ declare namespace Excel {
|
|
|
55646
55648
|
*
|
|
55647
55649
|
* @remarks
|
|
55648
55650
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
55651
|
+
* @beta
|
|
55649
55652
|
*/
|
|
55650
55653
|
class CustomFunctionManager extends OfficeExtension.ClientObject {
|
|
55651
55654
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -55654,21 +55657,33 @@ declare namespace Excel {
|
|
|
55654
55657
|
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
55655
55658
|
*
|
|
55656
55659
|
* @param propertyNames A comma-delimited string or an array of strings that specify the properties to load.
|
|
55660
|
+
*
|
|
55661
|
+
* @remarks
|
|
55662
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
55663
|
+
* @beta
|
|
55657
55664
|
*/
|
|
55658
55665
|
load(propertyNames?: string | string[]): Excel.CustomFunctionManager;
|
|
55659
55666
|
/**
|
|
55660
55667
|
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
55661
55668
|
*
|
|
55662
55669
|
* @param propertyNamesAndPaths `propertyNamesAndPaths.select` is a comma-delimited string that specifies the properties to load, and `propertyNamesAndPaths.expand` is a comma-delimited string that specifies the navigation properties to load.
|
|
55670
|
+
*
|
|
55671
|
+
* @remarks
|
|
55672
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
55673
|
+
* @beta
|
|
55663
55674
|
*/
|
|
55664
55675
|
load(propertyNamesAndPaths?: {
|
|
55665
55676
|
select?: string;
|
|
55666
55677
|
expand?: string;
|
|
55667
55678
|
}): Excel.CustomFunctionManager;
|
|
55668
55679
|
/**
|
|
55669
|
-
|
|
55670
|
-
|
|
55671
|
-
|
|
55680
|
+
* Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that's passed to it.)
|
|
55681
|
+
* Whereas the original `Excel.CustomFunctionManager` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Excel.Interfaces.CustomFunctionManagerData`) that contains shallow copies of any loaded child properties from the original object.
|
|
55682
|
+
*
|
|
55683
|
+
* @remarks
|
|
55684
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
55685
|
+
* @beta
|
|
55686
|
+
*/
|
|
55672
55687
|
toJSON(): Excel.Interfaces.CustomFunctionManagerData;
|
|
55673
55688
|
}
|
|
55674
55689
|
/**
|
office-js-preview/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js-preview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.607",
|
|
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": "
|
|
49
|
+
"typesPublisherContentHash": "ae808077f838cbe3fa8977cae7fc4430b59ccaf295b1e4e44153327397969939",
|
|
50
50
|
"typeScriptVersion": "5.1",
|
|
51
51
|
"nonNpm": true
|
|
52
52
|
}
|