@types/office-js-preview 1.0.604 → 1.0.606

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.
@@ -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: Thu, 05 Jun 2025 00:04:18 GMT
11
+ * Last updated: Wed, 11 Jun 2025 22:36:18 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -23919,9 +23919,9 @@ declare namespace Office {
23919
23919
  * - To learn how to implement the `commandId` property in your spam-reporting add-in, see
23920
23920
  * {@link https://learn.microsoft.com/office/dev/add-ins/outlook/spam-reporting#open-a-task-pane-after-reporting-a-message | Open a task pane after reporting a message}.
23921
23921
  *
23922
- * - The `commandId` value must match the task pane ID specified in the manifest of your add-in. In an add-in only manifest,
23923
- * the ID is specified in the `id` attribute of the {@link https://learn.microsoft.com/javascript/api/manifest/control | Control} element that represents the task pane.
23924
- * The `commandId` property isn't currently supported in a spam-reporting add-in that uses a unified manifest for Microsoft 365.
23922
+ * - The `commandId` value must match the task pane ID specified in the manifest of your add-in. In the unified manifest for Microsoft 365, the ID is specified in the "id" property of the
23923
+ * {@link https://learn.microsoft.com/microsoft-365/extensibility/schema/extension-common-custom-group-controls-item#id | "extensions.ribbons.tabs.groups.controls"} object that represents the task pane.
23924
+ * In an add-in only manifest, the ID is specified in the `id` attribute of the {@link https://learn.microsoft.com/javascript/api/manifest/control | Control} element that represents the task pane.
23925
23925
  *
23926
23926
  * - If you configure the `commandId` option in the `event.completed` call, a post-processing dialog isn't shown to the user
23927
23927
  * even if the `showPostProcessingDialog` option is specified in the call.
@@ -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)]
@@ -25610,6 +25608,8 @@ declare namespace Excel {
25610
25608
  /**
25611
25609
  * An error caused by a cell's formula evaluating to a lambda value. Displays as error type #CALC! in Excel.
25612
25610
  *
25611
+ * @deprecated Deprecated since [Api set: ExcelApi 1.19].
25612
+ *
25613
25613
  * @remarks
25614
25614
  * [Api set: ExcelApi 1.16]
25615
25615
  */
@@ -25708,7 +25708,15 @@ declare namespace Excel {
25708
25708
  * [Api set: ExcelApi BETA (PREVIEW ONLY)]
25709
25709
  * @beta
25710
25710
  */
25711
- unexpectedReturnValue = "UnexpectedReturnValue"
25711
+ unexpectedReturnValue = "UnexpectedReturnValue",
25712
+ /**
25713
+ * An error caused by a cell's formula evaluating to a function or function reference. Displays as error type #CALC! in Excel.
25714
+ *
25715
+ * @remarks
25716
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
25717
+ * @beta
25718
+ */
25719
+ functionInCell = "FunctionInCell"
25712
25720
  }
25713
25721
  /**
25714
25722
  * Represents the value of a cell containing a #CALC! error.
@@ -25753,7 +25761,7 @@ declare namespace Excel {
25753
25761
  * @remarks
25754
25762
  * [Api set: ExcelApi 1.16]
25755
25763
  */
25756
- errorSubType?: CalcErrorCellValueSubType | "Unknown" | "ArrayOfArrays" | "ArrayOfRanges" | "EmptyArray" | "UnsupportedLifting" | "DataTableReferencedPendingFormula" | "TooManyCells" | "LambdaInCell" | "TooDeeplyNested" | "TextOverflow" | "RequestTooLarge" | "PythonGridQuery" | "PythonPowerQueryDataUploadEtagChanged" | "PythonPowerQueryDataUploadSizeLimitExceeded" | "InvalidPythonObject" | "QueryInCell" | "UninitializedPythonObject" | "ExternalQueryRef" | "ERegexReplaceCharLimit" | "UnexpectedReturnValue";
25764
+ errorSubType?: CalcErrorCellValueSubType | "Unknown" | "ArrayOfArrays" | "ArrayOfRanges" | "EmptyArray" | "UnsupportedLifting" | "DataTableReferencedPendingFormula" | "TooManyCells" | "LambdaInCell" | "TooDeeplyNested" | "TextOverflow" | "RequestTooLarge" | "PythonGridQuery" | "PythonPowerQueryDataUploadEtagChanged" | "PythonPowerQueryDataUploadSizeLimitExceeded" | "InvalidPythonObject" | "QueryInCell" | "UninitializedPythonObject" | "ExternalQueryRef" | "ERegexReplaceCharLimit" | "UnexpectedReturnValue" | "FunctionInCell";
25757
25765
  /**
25758
25766
  * Represents the name of the function causing the error.
25759
25767
  *
@@ -25956,7 +25964,7 @@ declare namespace Excel {
25956
25964
  */
25957
25965
  enum FunctionCellValueType {
25958
25966
  /**
25959
- * 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}.
25967
+ * 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
25968
  *
25961
25969
  * @remarks
25962
25970
  * [Api set: ExcelApi 1.19]
@@ -26001,14 +26009,14 @@ declare namespace Excel {
26001
26009
  */
26002
26010
  functionType: FunctionCellValueType.javaScriptReference | "JavaScriptReference";
26003
26011
  /**
26004
- * Represents the namespace used by the custom function. For more information, see {@link https://learn.microsoft.com/javascript/api/manifest/namespace | Manifest reference: Namespace}.
26012
+ * 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
26013
  *
26006
26014
  * @remarks
26007
26015
  * [Api set: ExcelApi 1.19]
26008
26016
  */
26009
26017
  namespace: string;
26010
26018
  /**
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 | Autogenerate JSON metadata for custom functions: ID}.
26019
+ * 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
26020
  *
26013
26021
  * @remarks
26014
26022
  * [Api set: ExcelApi 1.19]
@@ -41284,7 +41292,7 @@ declare namespace Excel {
41284
41292
  getColumnsBefore(count?: number): Excel.Range;
41285
41293
  /**
41286
41294
  * 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
- * Note: This API returns an `ItemNotFound` error if no dependents are found.
41295
+ Note: This API returns an `ItemNotFound` error if no dependents are found.
41288
41296
  *
41289
41297
  * @remarks
41290
41298
  * [Api set: ExcelApi 1.15]
@@ -41292,7 +41300,7 @@ declare namespace Excel {
41292
41300
  getDependents(): Excel.WorkbookRangeAreas;
41293
41301
  /**
41294
41302
  * 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
- * Note: This API returns an `ItemNotFound` error if no dependents are found.
41303
+ Note: This API returns an `ItemNotFound` error if no dependents are found.
41296
41304
  *
41297
41305
  * @remarks
41298
41306
  * [Api set: ExcelApi 1.13]
@@ -41300,7 +41308,7 @@ declare namespace Excel {
41300
41308
  getDirectDependents(): Excel.WorkbookRangeAreas;
41301
41309
  /**
41302
41310
  * 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
- * Note: This API returns an `ItemNotFound` error if no precedents are found.
41311
+ Note: This API returns an `ItemNotFound` error if no precedents are found.
41304
41312
  *
41305
41313
  * @remarks
41306
41314
  * [Api set: ExcelApi 1.12]
@@ -41353,7 +41361,6 @@ declare namespace Excel {
41353
41361
  getExtendedRange(direction: "Left" | "Right" | "Up" | "Down", activeCell?: Range | string): Excel.Range;
41354
41362
  /**
41355
41363
  * 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
41364
  *
41358
41365
  * @remarks
41359
41366
  * [Api set: ExcelApi 1.7]
@@ -41429,7 +41436,7 @@ declare namespace Excel {
41429
41436
  getPivotTables(fullyContained?: boolean): Excel.PivotTableScopedCollection;
41430
41437
  /**
41431
41438
  * 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
- * Note: This API returns an `ItemNotFound` error if no precedents are found.
41439
+ Note: This API returns an `ItemNotFound` error if no precedents are found.
41433
41440
  *
41434
41441
  * @remarks
41435
41442
  * [Api set: ExcelApi 1.14]
@@ -41523,7 +41530,7 @@ declare namespace Excel {
41523
41530
  * @param cellType The type of cells to include.
41524
41531
  * @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
41532
  */
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;
41533
+ 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
41534
  /**
41528
41535
  * Gets the `RangeAreas` object, comprising one or more ranges, that represents all the cells that match the specified type and value.
41529
41536
  If no special cells are found, then this method returns an object with its `isNullObject` property set to `true`.
@@ -41547,7 +41554,7 @@ declare namespace Excel {
41547
41554
  * @param cellType The type of cells to include.
41548
41555
  * @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
41556
  */
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;
41557
+ 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
41558
  /**
41552
41559
  * 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
41560
  *
@@ -42164,7 +42171,7 @@ declare namespace Excel {
42164
42171
  * @param cellType The type of cells to include.
42165
42172
  * @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
42173
  */
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;
42174
+ 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
42175
  /**
42169
42176
  * 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
42177
  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 +42193,7 @@ declare namespace Excel {
42186
42193
  * @param cellType The type of cells to include.
42187
42194
  * @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
42195
  */
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;
42196
+ 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
42197
  /**
42191
42198
  * Returns a scoped collection of tables that overlap with any range in this `RangeAreas` object.
42192
42199
  *
@@ -55634,6 +55641,61 @@ declare namespace Excel {
55634
55641
  */
55635
55642
  toJSON(): Excel.Interfaces.ConditionalRangeBorderCollectionData;
55636
55643
  }
55644
+ /**
55645
+ * Manages settings on custom functions.
55646
+ *
55647
+ * @remarks
55648
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
55649
+ */
55650
+ class CustomFunctionManager extends OfficeExtension.ClientObject {
55651
+ /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
55652
+ context: RequestContext;
55653
+ /**
55654
+ * Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
55655
+ *
55656
+ * @param propertyNames A comma-delimited string or an array of strings that specify the properties to load.
55657
+ */
55658
+ load(propertyNames?: string | string[]): Excel.CustomFunctionManager;
55659
+ /**
55660
+ * Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
55661
+ *
55662
+ * @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.
55663
+ */
55664
+ load(propertyNamesAndPaths?: {
55665
+ select?: string;
55666
+ expand?: string;
55667
+ }): Excel.CustomFunctionManager;
55668
+ /**
55669
+ * 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.)
55670
+ * 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.
55671
+ */
55672
+ toJSON(): Excel.Interfaces.CustomFunctionManagerData;
55673
+ }
55674
+ /**
55675
+ * Represents which custom functions to show or hide in Excel AutoComplete.
55676
+ *
55677
+ * @remarks
55678
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
55679
+ * @beta
55680
+ */
55681
+ interface CustomFunctionVisibilityOptions {
55682
+ /**
55683
+ * A list of custom functions to hide from Excel AutoComplete.
55684
+ *
55685
+ * @remarks
55686
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
55687
+ * @beta
55688
+ */
55689
+ hide?: string[];
55690
+ /**
55691
+ * A list of custom functions to show in Excel AutoComplete.
55692
+ *
55693
+ * @remarks
55694
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
55695
+ * @beta
55696
+ */
55697
+ show?: string[];
55698
+ }
55637
55699
  /**
55638
55700
  * An object encapsulating a style's format and other properties.
55639
55701
  *
@@ -60230,8 +60292,8 @@ declare namespace Excel {
60230
60292
  readonly lastRefreshed: Date;
60231
60293
  /**
60232
60294
  * 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
- * 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 }.
60234
- * This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
60295
+ 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}.
60296
+ This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
60235
60297
  *
60236
60298
  * @remarks
60237
60299
  * [Api set: ExcelApi 1.19]
@@ -60526,7 +60588,7 @@ declare namespace Excel {
60526
60588
  id: string;
60527
60589
  /**
60528
60590
  * 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
- * 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 }.
60591
+ 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
60592
  *
60531
60593
  * @remarks
60532
60594
  * [Api set: ExcelApi 1.19]
@@ -65063,7 +65125,14 @@ declare namespace Excel {
65063
65125
  * [Api set: ExcelApi BETA (PREVIEW ONLY)]
65064
65126
  * @beta
65065
65127
  */
65066
- queryQueryRefreshCompleted = "QueryQueryRefreshCompleted"
65128
+ queryQueryRefreshCompleted = "QueryQueryRefreshCompleted",
65129
+ /**
65130
+ * ExternalCodeServiceDiffResultReceived represents the type of event registered when the diff result is received from the external code service.
65131
+ * @remarks
65132
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
65133
+ * @beta
65134
+ */
65135
+ externalCodeServiceDiffResultReceived = "ExternalCodeServiceDiffResultReceived"
65067
65136
  }
65068
65137
  /**
65069
65138
  * @remarks
@@ -67046,7 +67115,14 @@ declare namespace Excel {
67046
67115
  * @remarks
67047
67116
  * [Api set: ExcelApi 1.9]
67048
67117
  */
67049
- visible = "Visible"
67118
+ visible = "Visible",
67119
+ /**
67120
+ * Cells contain formulas which don't have up-to-date results.
67121
+ * @remarks
67122
+ * [Api set: ExcelApi BETA (PREVIEW ONLY)]
67123
+ * @beta
67124
+ */
67125
+ dirtyFormulas = "DirtyFormulas"
67050
67126
  }
67051
67127
  /**
67052
67128
  * @remarks
@@ -82709,6 +82785,9 @@ declare namespace Excel {
82709
82785
  interface ConditionalRangeBorderCollectionData {
82710
82786
  items?: Excel.Interfaces.ConditionalRangeBorderData[];
82711
82787
  }
82788
+ /** An interface describing the data returned by calling `customFunctionManager.toJSON()`. */
82789
+ interface CustomFunctionManagerData {
82790
+ }
82712
82791
  /** An interface describing the data returned by calling `style.toJSON()`. */
82713
82792
  interface StyleData {
82714
82793
  /**
@@ -84130,7 +84209,7 @@ declare namespace Excel {
84130
84209
  lastRefreshed?: Date;
84131
84210
  /**
84132
84211
  * 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 }.
84212
+ 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
84213
  This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
84135
84214
  *
84136
84215
  * @remarks
@@ -96213,7 +96292,7 @@ declare namespace Excel {
96213
96292
  lastRefreshed?: boolean;
96214
96293
  /**
96215
96294
  * 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 }.
96295
+ 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
96296
  This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
96218
96297
  *
96219
96298
  * @remarks
@@ -96265,7 +96344,7 @@ declare namespace Excel {
96265
96344
  }
96266
96345
  /**
96267
96346
  * 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.
96347
+ 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
96348
  *
96270
96349
  * @remarks
96271
96350
  * [Api set: ExcelApi 1.19]
@@ -96301,7 +96380,7 @@ declare namespace Excel {
96301
96380
  lastRefreshed?: boolean;
96302
96381
  /**
96303
96382
  * 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 }.
96383
+ 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
96384
  This ID is not applicable to linked entity data domains defined by service data providers, such as Bing or Power BI.
96306
96385
  *
96307
96386
  * @remarks
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js-preview",
3
- "version": "1.0.604",
3
+ "version": "1.0.606",
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": "b08aa7b3a8191044057f92020c69171cf295dbb7a784148aad922c2cf1a4929d",
49
+ "typesPublisherContentHash": "258cabee991051611e0719a986dd4678c1d94bfee6996bed7021f90334e81a57",
50
50
  "typeScriptVersion": "5.1",
51
51
  "nonNpm": true
52
52
  }