@types/office-js-preview 1.0.605 → 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 +1 -1
- office-js-preview/index.d.ts +121 -27
- office-js-preview/package.json +2 -2
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
|
@@ -25069,8 +25069,7 @@ declare namespace Excel {
|
|
|
25069
25069
|
*/
|
|
25070
25070
|
displayName?: string;
|
|
25071
25071
|
/**
|
|
25072
|
-
* Represents the count of rows which the card claims are in the array.
|
|
25073
|
-
* A card may report fewer rows than actually exist to display a smaller amount of preview data.
|
|
25072
|
+
* Represents the count of rows which the card claims are in the array. A card may report fewer rows than actually exist to display a smaller amount of preview data.
|
|
25074
25073
|
*
|
|
25075
25074
|
* @remarks
|
|
25076
25075
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
@@ -25078,8 +25077,7 @@ declare namespace Excel {
|
|
|
25078
25077
|
*/
|
|
25079
25078
|
rowsToReport?: number;
|
|
25080
25079
|
/**
|
|
25081
|
-
* Represents the count of columns which the card claims are in the array.
|
|
25082
|
-
* A card may report fewer columns than actually exist to display a smaller amount of preview data.
|
|
25080
|
+
* Represents the count of columns which the card claims are in the array. A card may report fewer columns than actually exist to display a smaller amount of preview data.
|
|
25083
25081
|
*
|
|
25084
25082
|
* @remarks
|
|
25085
25083
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
@@ -25609,6 +25607,10 @@ declare namespace Excel {
|
|
|
25609
25607
|
tooManyCells = "TooManyCells",
|
|
25610
25608
|
/**
|
|
25611
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.
|
|
25612
|
+
*
|
|
25613
|
+
* @deprecated Deprecated since ExcelApi 1.19.
|
|
25612
25614
|
*
|
|
25613
25615
|
* @remarks
|
|
25614
25616
|
* [Api set: ExcelApi 1.16]
|
|
@@ -25708,7 +25710,15 @@ declare namespace Excel {
|
|
|
25708
25710
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
25709
25711
|
* @beta
|
|
25710
25712
|
*/
|
|
25711
|
-
unexpectedReturnValue = "UnexpectedReturnValue"
|
|
25713
|
+
unexpectedReturnValue = "UnexpectedReturnValue",
|
|
25714
|
+
/**
|
|
25715
|
+
* An error caused by a cell's formula evaluating to a function or function reference. Displays as error type #CALC! in Excel.
|
|
25716
|
+
*
|
|
25717
|
+
* @remarks
|
|
25718
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
25719
|
+
* @beta
|
|
25720
|
+
*/
|
|
25721
|
+
functionInCell = "FunctionInCell"
|
|
25712
25722
|
}
|
|
25713
25723
|
/**
|
|
25714
25724
|
* Represents the value of a cell containing a #CALC! error.
|
|
@@ -25753,7 +25763,7 @@ declare namespace Excel {
|
|
|
25753
25763
|
* @remarks
|
|
25754
25764
|
* [Api set: ExcelApi 1.16]
|
|
25755
25765
|
*/
|
|
25756
|
-
errorSubType?: CalcErrorCellValueSubType | "Unknown" | "ArrayOfArrays" | "ArrayOfRanges" | "EmptyArray" | "UnsupportedLifting" | "DataTableReferencedPendingFormula" | "TooManyCells" | "LambdaInCell" | "TooDeeplyNested" | "TextOverflow" | "RequestTooLarge" | "PythonGridQuery" | "PythonPowerQueryDataUploadEtagChanged" | "PythonPowerQueryDataUploadSizeLimitExceeded" | "InvalidPythonObject" | "QueryInCell" | "UninitializedPythonObject" | "ExternalQueryRef" | "ERegexReplaceCharLimit" | "UnexpectedReturnValue";
|
|
25766
|
+
errorSubType?: CalcErrorCellValueSubType | "Unknown" | "ArrayOfArrays" | "ArrayOfRanges" | "EmptyArray" | "UnsupportedLifting" | "DataTableReferencedPendingFormula" | "TooManyCells" | "LambdaInCell" | "TooDeeplyNested" | "TextOverflow" | "RequestTooLarge" | "PythonGridQuery" | "PythonPowerQueryDataUploadEtagChanged" | "PythonPowerQueryDataUploadSizeLimitExceeded" | "InvalidPythonObject" | "QueryInCell" | "UninitializedPythonObject" | "ExternalQueryRef" | "ERegexReplaceCharLimit" | "UnexpectedReturnValue" | "FunctionInCell";
|
|
25757
25767
|
/**
|
|
25758
25768
|
* Represents the name of the function causing the error.
|
|
25759
25769
|
*
|
|
@@ -25956,7 +25966,7 @@ declare namespace Excel {
|
|
|
25956
25966
|
*/
|
|
25957
25967
|
enum FunctionCellValueType {
|
|
25958
25968
|
/**
|
|
25959
|
-
* Reference to a JavaScript custom function. For more information, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/custom-functions-overview
|
|
25969
|
+
* 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}.
|
|
25960
25970
|
*
|
|
25961
25971
|
* @remarks
|
|
25962
25972
|
* [Api set: ExcelApi 1.19]
|
|
@@ -26001,14 +26011,14 @@ declare namespace Excel {
|
|
|
26001
26011
|
*/
|
|
26002
26012
|
functionType: FunctionCellValueType.javaScriptReference | "JavaScriptReference";
|
|
26003
26013
|
/**
|
|
26004
|
-
* Represents the namespace used by the custom function. For more information, see {@link https://learn.microsoft.com/javascript/api/manifest/namespace
|
|
26014
|
+
* Represents the namespace used by the custom function. For more information, see {@link https://learn.microsoft.com/javascript/api/manifest/namespace | Manifest reference: Namespace}.
|
|
26005
26015
|
*
|
|
26006
26016
|
* @remarks
|
|
26007
26017
|
* [Api set: ExcelApi 1.19]
|
|
26008
26018
|
*/
|
|
26009
26019
|
namespace: string;
|
|
26010
26020
|
/**
|
|
26011
|
-
* 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
|
|
26021
|
+
* 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}.
|
|
26012
26022
|
*
|
|
26013
26023
|
* @remarks
|
|
26014
26024
|
* [Api set: ExcelApi 1.19]
|
|
@@ -41284,7 +41294,7 @@ declare namespace Excel {
|
|
|
41284
41294
|
getColumnsBefore(count?: number): Excel.Range;
|
|
41285
41295
|
/**
|
|
41286
41296
|
* 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.
|
|
41287
|
-
|
|
41297
|
+
Note: This API returns an `ItemNotFound` error if no dependents are found.
|
|
41288
41298
|
*
|
|
41289
41299
|
* @remarks
|
|
41290
41300
|
* [Api set: ExcelApi 1.15]
|
|
@@ -41292,7 +41302,7 @@ declare namespace Excel {
|
|
|
41292
41302
|
getDependents(): Excel.WorkbookRangeAreas;
|
|
41293
41303
|
/**
|
|
41294
41304
|
* 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.
|
|
41295
|
-
|
|
41305
|
+
Note: This API returns an `ItemNotFound` error if no dependents are found.
|
|
41296
41306
|
*
|
|
41297
41307
|
* @remarks
|
|
41298
41308
|
* [Api set: ExcelApi 1.13]
|
|
@@ -41300,7 +41310,7 @@ declare namespace Excel {
|
|
|
41300
41310
|
getDirectDependents(): Excel.WorkbookRangeAreas;
|
|
41301
41311
|
/**
|
|
41302
41312
|
* 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.
|
|
41303
|
-
|
|
41313
|
+
Note: This API returns an `ItemNotFound` error if no precedents are found.
|
|
41304
41314
|
*
|
|
41305
41315
|
* @remarks
|
|
41306
41316
|
* [Api set: ExcelApi 1.12]
|
|
@@ -41353,7 +41363,6 @@ declare namespace Excel {
|
|
|
41353
41363
|
getExtendedRange(direction: "Left" | "Right" | "Up" | "Down", activeCell?: Range | string): Excel.Range;
|
|
41354
41364
|
/**
|
|
41355
41365
|
* Renders the range as a Base64-encoded PNG image.
|
|
41356
|
-
**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.
|
|
41357
41366
|
*
|
|
41358
41367
|
* @remarks
|
|
41359
41368
|
* [Api set: ExcelApi 1.7]
|
|
@@ -41429,7 +41438,7 @@ declare namespace Excel {
|
|
|
41429
41438
|
getPivotTables(fullyContained?: boolean): Excel.PivotTableScopedCollection;
|
|
41430
41439
|
/**
|
|
41431
41440
|
* 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.
|
|
41432
|
-
|
|
41441
|
+
Note: This API returns an `ItemNotFound` error if no precedents are found.
|
|
41433
41442
|
*
|
|
41434
41443
|
* @remarks
|
|
41435
41444
|
* [Api set: ExcelApi 1.14]
|
|
@@ -41523,7 +41532,7 @@ declare namespace Excel {
|
|
|
41523
41532
|
* @param cellType The type of cells to include.
|
|
41524
41533
|
* @param cellValueType If `cellType` is either `constants` or `formulas`, this argument is used to determine which types of cells to include in the result. These values can be combined together to return more than one type. The default is to select all constants or formulas, no matter what the type.
|
|
41525
41534
|
*/
|
|
41526
|
-
getSpecialCells(cellType: "ConditionalFormats" | "DataValidations" | "Blanks" | "Constants" | "Formulas" | "SameConditionalFormat" | "SameDataValidation" | "Visible", cellValueType?: "All" | "Errors" | "ErrorsLogical" | "ErrorsNumbers" | "ErrorsText" | "ErrorsLogicalNumber" | "ErrorsLogicalText" | "ErrorsNumberText" | "Logical" | "LogicalNumbers" | "LogicalText" | "LogicalNumbersText" | "Numbers" | "NumbersText" | "Text"): Excel.RangeAreas;
|
|
41535
|
+
getSpecialCells(cellType: "ConditionalFormats" | "DataValidations" | "Blanks" | "Constants" | "Formulas" | "SameConditionalFormat" | "SameDataValidation" | "Visible" | "DirtyFormulas", cellValueType?: "All" | "Errors" | "ErrorsLogical" | "ErrorsNumbers" | "ErrorsText" | "ErrorsLogicalNumber" | "ErrorsLogicalText" | "ErrorsNumberText" | "Logical" | "LogicalNumbers" | "LogicalText" | "LogicalNumbersText" | "Numbers" | "NumbersText" | "Text"): Excel.RangeAreas;
|
|
41527
41536
|
/**
|
|
41528
41537
|
* Gets the `RangeAreas` object, comprising one or more ranges, that represents all the cells that match the specified type and value.
|
|
41529
41538
|
If no special cells are found, then this method returns an object with its `isNullObject` property set to `true`.
|
|
@@ -41547,7 +41556,7 @@ declare namespace Excel {
|
|
|
41547
41556
|
* @param cellType The type of cells to include.
|
|
41548
41557
|
* @param cellValueType If `cellType` is either `constants` or `formulas`, this argument is used to determine which types of cells to include in the result. These values can be combined together to return more than one type. The default is to select all constants or formulas, no matter what the type.
|
|
41549
41558
|
*/
|
|
41550
|
-
getSpecialCellsOrNullObject(cellType: "ConditionalFormats" | "DataValidations" | "Blanks" | "Constants" | "Formulas" | "SameConditionalFormat" | "SameDataValidation" | "Visible", cellValueType?: "All" | "Errors" | "ErrorsLogical" | "ErrorsNumbers" | "ErrorsText" | "ErrorsLogicalNumber" | "ErrorsLogicalText" | "ErrorsNumberText" | "Logical" | "LogicalNumbers" | "LogicalText" | "LogicalNumbersText" | "Numbers" | "NumbersText" | "Text"): Excel.RangeAreas;
|
|
41559
|
+
getSpecialCellsOrNullObject(cellType: "ConditionalFormats" | "DataValidations" | "Blanks" | "Constants" | "Formulas" | "SameConditionalFormat" | "SameDataValidation" | "Visible" | "DirtyFormulas", cellValueType?: "All" | "Errors" | "ErrorsLogical" | "ErrorsNumbers" | "ErrorsText" | "ErrorsLogicalNumber" | "ErrorsLogicalText" | "ErrorsNumberText" | "Logical" | "LogicalNumbers" | "LogicalText" | "LogicalNumbersText" | "Numbers" | "NumbersText" | "Text"): Excel.RangeAreas;
|
|
41551
41560
|
/**
|
|
41552
41561
|
* Gets the range object containing the anchor cell for a cell getting spilled into. Fails if applied to a range with more than one cell.
|
|
41553
41562
|
*
|
|
@@ -42164,7 +42173,7 @@ declare namespace Excel {
|
|
|
42164
42173
|
* @param cellType The type of cells to include.
|
|
42165
42174
|
* @param cellValueType If `cellType` is either `constants` or `formulas`, this argument is used to determine which types of cells to include in the result. These values can be combined together to return more than one type. The default is to select all constants or formulas, no matter what the type.
|
|
42166
42175
|
*/
|
|
42167
|
-
getSpecialCells(cellType: "ConditionalFormats" | "DataValidations" | "Blanks" | "Constants" | "Formulas" | "SameConditionalFormat" | "SameDataValidation" | "Visible", cellValueType?: "All" | "Errors" | "ErrorsLogical" | "ErrorsNumbers" | "ErrorsText" | "ErrorsLogicalNumber" | "ErrorsLogicalText" | "ErrorsNumberText" | "Logical" | "LogicalNumbers" | "LogicalText" | "LogicalNumbersText" | "Numbers" | "NumbersText" | "Text"): Excel.RangeAreas;
|
|
42176
|
+
getSpecialCells(cellType: "ConditionalFormats" | "DataValidations" | "Blanks" | "Constants" | "Formulas" | "SameConditionalFormat" | "SameDataValidation" | "Visible" | "DirtyFormulas", cellValueType?: "All" | "Errors" | "ErrorsLogical" | "ErrorsNumbers" | "ErrorsText" | "ErrorsLogicalNumber" | "ErrorsLogicalText" | "ErrorsNumberText" | "Logical" | "LogicalNumbers" | "LogicalText" | "LogicalNumbersText" | "Numbers" | "NumbersText" | "Text"): Excel.RangeAreas;
|
|
42168
42177
|
/**
|
|
42169
42178
|
* Returns a `RangeAreas` object that represents all the cells that match the specified type and value. If no special cells are found that match the criteria, then this method returns an object with its `isNullObject` property set to `true`.
|
|
42170
42179
|
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
@@ -42186,7 +42195,7 @@ declare namespace Excel {
|
|
|
42186
42195
|
* @param cellType The type of cells to include.
|
|
42187
42196
|
* @param cellValueType If `cellType` is either `constants` or `formulas`, this argument is used to determine which types of cells to include in the result. These values can be combined together to return more than one type. The default is to select all constants or formulas, no matter what the type.
|
|
42188
42197
|
*/
|
|
42189
|
-
getSpecialCellsOrNullObject(cellType: "ConditionalFormats" | "DataValidations" | "Blanks" | "Constants" | "Formulas" | "SameConditionalFormat" | "SameDataValidation" | "Visible", cellValueType?: "All" | "Errors" | "ErrorsLogical" | "ErrorsNumbers" | "ErrorsText" | "ErrorsLogicalNumber" | "ErrorsLogicalText" | "ErrorsNumberText" | "Logical" | "LogicalNumbers" | "LogicalText" | "LogicalNumbersText" | "Numbers" | "NumbersText" | "Text"): Excel.RangeAreas;
|
|
42198
|
+
getSpecialCellsOrNullObject(cellType: "ConditionalFormats" | "DataValidations" | "Blanks" | "Constants" | "Formulas" | "SameConditionalFormat" | "SameDataValidation" | "Visible" | "DirtyFormulas", cellValueType?: "All" | "Errors" | "ErrorsLogical" | "ErrorsNumbers" | "ErrorsText" | "ErrorsLogicalNumber" | "ErrorsLogicalText" | "ErrorsNumberText" | "Logical" | "LogicalNumbers" | "LogicalText" | "LogicalNumbersText" | "Numbers" | "NumbersText" | "Text"): Excel.RangeAreas;
|
|
42190
42199
|
/**
|
|
42191
42200
|
* Returns a scoped collection of tables that overlap with any range in this `RangeAreas` object.
|
|
42192
42201
|
*
|
|
@@ -55634,6 +55643,74 @@ declare namespace Excel {
|
|
|
55634
55643
|
*/
|
|
55635
55644
|
toJSON(): Excel.Interfaces.ConditionalRangeBorderCollectionData;
|
|
55636
55645
|
}
|
|
55646
|
+
/**
|
|
55647
|
+
* Manages settings on custom functions.
|
|
55648
|
+
*
|
|
55649
|
+
* @remarks
|
|
55650
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
55651
|
+
* @beta
|
|
55652
|
+
*/
|
|
55653
|
+
class CustomFunctionManager extends OfficeExtension.ClientObject {
|
|
55654
|
+
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
55655
|
+
context: RequestContext;
|
|
55656
|
+
/**
|
|
55657
|
+
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
55658
|
+
*
|
|
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
|
|
55664
|
+
*/
|
|
55665
|
+
load(propertyNames?: string | string[]): Excel.CustomFunctionManager;
|
|
55666
|
+
/**
|
|
55667
|
+
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
55668
|
+
*
|
|
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
|
|
55674
|
+
*/
|
|
55675
|
+
load(propertyNamesAndPaths?: {
|
|
55676
|
+
select?: string;
|
|
55677
|
+
expand?: string;
|
|
55678
|
+
}): Excel.CustomFunctionManager;
|
|
55679
|
+
/**
|
|
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
|
+
*/
|
|
55687
|
+
toJSON(): Excel.Interfaces.CustomFunctionManagerData;
|
|
55688
|
+
}
|
|
55689
|
+
/**
|
|
55690
|
+
* Represents which custom functions to show or hide in Excel AutoComplete.
|
|
55691
|
+
*
|
|
55692
|
+
* @remarks
|
|
55693
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
55694
|
+
* @beta
|
|
55695
|
+
*/
|
|
55696
|
+
interface CustomFunctionVisibilityOptions {
|
|
55697
|
+
/**
|
|
55698
|
+
* A list of custom functions to hide from Excel AutoComplete.
|
|
55699
|
+
*
|
|
55700
|
+
* @remarks
|
|
55701
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
55702
|
+
* @beta
|
|
55703
|
+
*/
|
|
55704
|
+
hide?: string[];
|
|
55705
|
+
/**
|
|
55706
|
+
* A list of custom functions to show in Excel AutoComplete.
|
|
55707
|
+
*
|
|
55708
|
+
* @remarks
|
|
55709
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
55710
|
+
* @beta
|
|
55711
|
+
*/
|
|
55712
|
+
show?: string[];
|
|
55713
|
+
}
|
|
55637
55714
|
/**
|
|
55638
55715
|
* An object encapsulating a style's format and other properties.
|
|
55639
55716
|
*
|
|
@@ -60230,8 +60307,8 @@ declare namespace Excel {
|
|
|
60230
60307
|
readonly lastRefreshed: Date;
|
|
60231
60308
|
/**
|
|
60232
60309
|
* 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.
|
|
60233
|
-
|
|
60234
|
-
|
|
60310
|
+
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}.
|
|
60311
|
+
This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
|
|
60235
60312
|
*
|
|
60236
60313
|
* @remarks
|
|
60237
60314
|
* [Api set: ExcelApi 1.19]
|
|
@@ -60526,7 +60603,7 @@ declare namespace Excel {
|
|
|
60526
60603
|
id: string;
|
|
60527
60604
|
/**
|
|
60528
60605
|
* 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.
|
|
60529
|
-
|
|
60606
|
+
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}.
|
|
60530
60607
|
*
|
|
60531
60608
|
* @remarks
|
|
60532
60609
|
* [Api set: ExcelApi 1.19]
|
|
@@ -65063,7 +65140,14 @@ declare namespace Excel {
|
|
|
65063
65140
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
65064
65141
|
* @beta
|
|
65065
65142
|
*/
|
|
65066
|
-
queryQueryRefreshCompleted = "QueryQueryRefreshCompleted"
|
|
65143
|
+
queryQueryRefreshCompleted = "QueryQueryRefreshCompleted",
|
|
65144
|
+
/**
|
|
65145
|
+
* ExternalCodeServiceDiffResultReceived represents the type of event registered when the diff result is received from the external code service.
|
|
65146
|
+
* @remarks
|
|
65147
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
65148
|
+
* @beta
|
|
65149
|
+
*/
|
|
65150
|
+
externalCodeServiceDiffResultReceived = "ExternalCodeServiceDiffResultReceived"
|
|
65067
65151
|
}
|
|
65068
65152
|
/**
|
|
65069
65153
|
* @remarks
|
|
@@ -67046,7 +67130,14 @@ declare namespace Excel {
|
|
|
67046
67130
|
* @remarks
|
|
67047
67131
|
* [Api set: ExcelApi 1.9]
|
|
67048
67132
|
*/
|
|
67049
|
-
visible = "Visible"
|
|
67133
|
+
visible = "Visible",
|
|
67134
|
+
/**
|
|
67135
|
+
* Cells contain formulas which don't have up-to-date results.
|
|
67136
|
+
* @remarks
|
|
67137
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
67138
|
+
* @beta
|
|
67139
|
+
*/
|
|
67140
|
+
dirtyFormulas = "DirtyFormulas"
|
|
67050
67141
|
}
|
|
67051
67142
|
/**
|
|
67052
67143
|
* @remarks
|
|
@@ -82709,6 +82800,9 @@ declare namespace Excel {
|
|
|
82709
82800
|
interface ConditionalRangeBorderCollectionData {
|
|
82710
82801
|
items?: Excel.Interfaces.ConditionalRangeBorderData[];
|
|
82711
82802
|
}
|
|
82803
|
+
/** An interface describing the data returned by calling `customFunctionManager.toJSON()`. */
|
|
82804
|
+
interface CustomFunctionManagerData {
|
|
82805
|
+
}
|
|
82712
82806
|
/** An interface describing the data returned by calling `style.toJSON()`. */
|
|
82713
82807
|
interface StyleData {
|
|
82714
82808
|
/**
|
|
@@ -84130,7 +84224,7 @@ declare namespace Excel {
|
|
|
84130
84224
|
lastRefreshed?: Date;
|
|
84131
84225
|
/**
|
|
84132
84226
|
* 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.
|
|
84133
|
-
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
|
|
84227
|
+
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}.
|
|
84134
84228
|
This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
|
|
84135
84229
|
*
|
|
84136
84230
|
* @remarks
|
|
@@ -96213,7 +96307,7 @@ declare namespace Excel {
|
|
|
96213
96307
|
lastRefreshed?: boolean;
|
|
96214
96308
|
/**
|
|
96215
96309
|
* 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.
|
|
96216
|
-
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
|
|
96310
|
+
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}.
|
|
96217
96311
|
This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
|
|
96218
96312
|
*
|
|
96219
96313
|
* @remarks
|
|
@@ -96265,7 +96359,7 @@ declare namespace Excel {
|
|
|
96265
96359
|
}
|
|
96266
96360
|
/**
|
|
96267
96361
|
* Represents a collection of `LinkedEntityDataDomain` objects.
|
|
96268
|
-
The collection can contain linked entity data domains such as stocks, geography or currencies defined by service data providers, such as Bing or Power BI, or linked entity data domains defined by Office Add-ins.
|
|
96362
|
+
The collection can contain linked entity data domains such as stocks, geography, or currencies defined by service data providers, such as Bing or Power BI, or linked entity data domains defined by Office Add-ins.
|
|
96269
96363
|
*
|
|
96270
96364
|
* @remarks
|
|
96271
96365
|
* [Api set: ExcelApi 1.19]
|
|
@@ -96301,7 +96395,7 @@ declare namespace Excel {
|
|
|
96301
96395
|
lastRefreshed?: boolean;
|
|
96302
96396
|
/**
|
|
96303
96397
|
* 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.
|
|
96304
|
-
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
|
|
96398
|
+
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}.
|
|
96305
96399
|
This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
|
|
96306
96400
|
*
|
|
96307
96401
|
* @remarks
|
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
|
}
|