@types/office-js 1.0.535 → 1.0.537

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.
Files changed (3) hide show
  1. office-js/README.md +1 -1
  2. office-js/index.d.ts +109 -132
  3. 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: Tue, 16 Sep 2025 02:07:17 GMT
11
+ * Last updated: Thu, 18 Sep 2025 00:47:12 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
office-js/index.d.ts CHANGED
@@ -25205,8 +25205,6 @@ declare namespace Excel {
25205
25205
  tooManyCells = "TooManyCells",
25206
25206
  /**
25207
25207
  * An error caused by a cell's formula evaluating to a lambda value. Displays as error type #CALC! in Excel.
25208
- *
25209
- * Warning: `lambdaInCell` was deprecated in ExcelApi 1.19.
25210
25208
  *
25211
25209
  * @deprecated Deprecated since ExcelApi 1.19.
25212
25210
  *
@@ -33976,7 +33974,7 @@ declare namespace Excel {
33976
33974
  */
33977
33975
  interface ChangedEventDetail {
33978
33976
  /**
33979
- * Represents the value after the change. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
33977
+ * Represents the value after the change. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
33980
33978
  *
33981
33979
  * @remarks
33982
33980
  * [Api set: ExcelApi 1.9]
@@ -33999,7 +33997,7 @@ declare namespace Excel {
33999
33997
  */
34000
33998
  valueAsJsonBefore: CellValue;
34001
33999
  /**
34002
- * Represents the value before the change. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
34000
+ * Represents the value before the change. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
34003
34001
  *
34004
34002
  * @remarks
34005
34003
  * [Api set: ExcelApi 1.9]
@@ -35636,7 +35634,7 @@ declare namespace Excel {
35636
35634
  getActiveChartOrNullObject(): Excel.Chart;
35637
35635
  /**
35638
35636
  * Gets the active shape in the workbook.
35639
- Throws an `ItemNotFound` if there is no active shape.
35637
+ Throws an `ItemNotFound` error if there is no active shape.
35640
35638
  *
35641
35639
  * @remarks
35642
35640
  * [Api set: ExcelApi 1.19]
@@ -37321,7 +37319,7 @@ declare namespace Excel {
37321
37319
  */
37322
37320
  readonly valueTypes: Excel.RangeValueType[][];
37323
37321
  /**
37324
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
37322
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
37325
37323
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
37326
37324
  *
37327
37325
  * @remarks
@@ -37330,7 +37328,7 @@ declare namespace Excel {
37330
37328
  values: any[][];
37331
37329
  /**
37332
37330
  * A JSON representation of the values in the cells in this range.
37333
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
37331
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
37334
37332
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
37335
37333
  *
37336
37334
  * @remarks
@@ -37339,7 +37337,7 @@ declare namespace Excel {
37339
37337
  valuesAsJson: CellValue[][];
37340
37338
  /**
37341
37339
  * A JSON representation of the values in the cells in this range.
37342
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
37340
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
37343
37341
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
37344
37342
  *
37345
37343
  * @remarks
@@ -39235,7 +39233,7 @@ declare namespace Excel {
39235
39233
  */
39236
39234
  readonly valueTypes: Excel.RangeValueType[][];
39237
39235
  /**
39238
- * Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
39236
+ * Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
39239
39237
  *
39240
39238
  * @remarks
39241
39239
  * [Api set: ExcelApi 1.3]
@@ -39243,7 +39241,7 @@ declare namespace Excel {
39243
39241
  values: any[][];
39244
39242
  /**
39245
39243
  * A JSON representation of the values in the cells in this range.
39246
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39244
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39247
39245
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
39248
39246
  *
39249
39247
  * @remarks
@@ -39252,7 +39250,7 @@ declare namespace Excel {
39252
39250
  valuesAsJson: CellValue[][];
39253
39251
  /**
39254
39252
  * A JSON representation of the values in the cells in this range.
39255
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39253
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39256
39254
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
39257
39255
  *
39258
39256
  * @remarks
@@ -39661,7 +39659,7 @@ declare namespace Excel {
39661
39659
  readonly value: any;
39662
39660
  /**
39663
39661
  * A JSON representation of the values in this named item.
39664
- Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39662
+ Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39665
39663
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItem.valueAsJsonLocal`.
39666
39664
  *
39667
39665
  * @remarks
@@ -39670,7 +39668,7 @@ declare namespace Excel {
39670
39668
  readonly valueAsJson: CellValue | string;
39671
39669
  /**
39672
39670
  * A JSON representation of the values in this named item.
39673
- Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39671
+ Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39674
39672
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItem.valueAsJson`.
39675
39673
  *
39676
39674
  * @remarks
@@ -39767,7 +39765,7 @@ declare namespace Excel {
39767
39765
  readonly values: any[][];
39768
39766
  /**
39769
39767
  * A JSON representation of the values in this named item array.
39770
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39768
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39771
39769
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItemArrayValues.valuesAsJsonLocal`.
39772
39770
  *
39773
39771
  * @remarks
@@ -39776,7 +39774,7 @@ declare namespace Excel {
39776
39774
  readonly valuesAsJson: CellValue[][];
39777
39775
  /**
39778
39776
  * A JSON representation of the values in this named item array.
39779
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39777
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39780
39778
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItemArrayValues.valuesAsJson`.
39781
39779
  *
39782
39780
  * @remarks
@@ -40079,7 +40077,7 @@ declare namespace Excel {
40079
40077
  * [Api set: ExcelApi 1.1]
40080
40078
  *
40081
40079
  * @param address A `Range` object, or a string address or name of the range representing the data source. If the address does not contain a sheet name, the currently-active sheet is used. [Api set: ExcelApi 1.1 / 1.3. Prior to ExcelApi 1.3, this parameter must be a string. Starting with Excel Api 1.3, this parameter may be a Range object or a string.]
40082
- * @param hasHeaders A boolean value that indicates whether the data being imported has column labels. If the source does not contain headers (i.e., when this property set to `false`), Excel will automatically generate a header and shift the data down by one row.
40080
+ * @param hasHeaders A Boolean value that indicates whether the data being imported has column labels. If the source does not contain headers (i.e., when this property set to `false`), Excel will automatically generate a header and shift the data down by one row.
40083
40081
  */
40084
40082
  add(address: Range | string, hasHeaders: boolean): Excel.Table;
40085
40083
  /**
@@ -40619,7 +40617,7 @@ declare namespace Excel {
40619
40617
  */
40620
40618
  name: string;
40621
40619
  /**
40622
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
40620
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
40623
40621
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
40624
40622
  *
40625
40623
  * @remarks
@@ -40628,7 +40626,7 @@ declare namespace Excel {
40628
40626
  values: any[][];
40629
40627
  /**
40630
40628
  * A JSON representation of the values in the cells in this table column.
40631
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
40629
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
40632
40630
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
40633
40631
  *
40634
40632
  * @remarks
@@ -40637,7 +40635,7 @@ declare namespace Excel {
40637
40635
  valuesAsJson: CellValue[][];
40638
40636
  /**
40639
40637
  * A JSON representation of the values in the cells in this table column.
40640
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
40638
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
40641
40639
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
40642
40640
  *
40643
40641
  * @remarks
@@ -40859,7 +40857,7 @@ declare namespace Excel {
40859
40857
  */
40860
40858
  readonly index: number;
40861
40859
  /**
40862
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
40860
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
40863
40861
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
40864
40862
  *
40865
40863
  * @remarks
@@ -40868,7 +40866,7 @@ declare namespace Excel {
40868
40866
  values: any[][];
40869
40867
  /**
40870
40868
  * A JSON representation of the values in the cells in this table row.
40871
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
40869
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
40872
40870
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
40873
40871
  *
40874
40872
  * @remarks
@@ -40877,7 +40875,7 @@ declare namespace Excel {
40877
40875
  valuesAsJson: CellValue[][];
40878
40876
  /**
40879
40877
  * A JSON representation of the values in the cells in this table row.
40880
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
40878
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
40881
40879
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
40882
40880
  *
40883
40881
  * @remarks
@@ -41233,7 +41231,7 @@ declare namespace Excel {
41233
41231
  inCellDropDown: boolean;
41234
41232
  /**
41235
41233
  * Source of the list for data validation
41236
- When setting the value, it can be passed in as a `Range` object, or a string that contains a comma-separated number, boolean, or date.
41234
+ When setting the value, it can be passed in as a `Range` object, or a string that contains a comma-separated number, Boolean, or date.
41237
41235
  *
41238
41236
  * @remarks
41239
41237
  * [Api set: ExcelApi 1.8]
@@ -45361,7 +45359,7 @@ declare namespace Excel {
45361
45359
  */
45362
45360
  position: Excel.ChartTitlePosition | "Automatic" | "Top" | "Bottom" | "Left" | "Right";
45363
45361
  /**
45364
- * Represents a boolean value that determines if the chart title has a shadow.
45362
+ * Represents a Boolean value that determines if the chart title has a shadow.
45365
45363
  *
45366
45364
  * @remarks
45367
45365
  * [Api set: ExcelApi 1.7]
@@ -49696,7 +49694,7 @@ declare namespace Excel {
49696
49694
  */
49697
49695
  readonly key: string;
49698
49696
  /**
49699
- * Gets or sets the value of the custom property.
49697
+ * Specifies the value of the custom property.
49700
49698
  *
49701
49699
  * @remarks
49702
49700
  * [Api set: ExcelApi 1.12]
@@ -51836,9 +51834,6 @@ declare namespace Excel {
51836
51834
  * Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
51837
51835
  *
51838
51836
  * @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.
51839
- *
51840
- * @remarks
51841
- * [Api set: ExcelApi 1.20]
51842
51837
  */
51843
51838
  load(propertyNamesAndPaths?: {
51844
51839
  select?: string;
@@ -53322,14 +53317,14 @@ declare namespace Excel {
53322
53317
  */
53323
53318
  state: Excel.HeaderFooterState | "Default" | "FirstAndDefault" | "OddAndEven" | "FirstOddAndEven";
53324
53319
  /**
53325
- * Gets or sets a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
53320
+ * Specifies a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
53326
53321
  *
53327
53322
  * @remarks
53328
53323
  * [Api set: ExcelApi 1.9]
53329
53324
  */
53330
53325
  useSheetMargins: boolean;
53331
53326
  /**
53332
- * Gets or sets a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
53327
+ * Specifies a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
53333
53328
  *
53334
53329
  * @remarks
53335
53330
  * [Api set: ExcelApi 1.9]
@@ -60776,24 +60771,6 @@ declare namespace Excel {
60776
60771
  * [Api set: ExcelApi 1.7]
60777
60772
  */
60778
60773
  commentChanged = "CommentChanged",
60779
- /**
60780
- * `RefreshRequestCompleted` represents the type of event registered on a `LinkedDataType` and occurs when a request to refresh a data source is completed.
60781
- * @remarks
60782
- * [Api set: ExcelApi 1.7]
60783
- */
60784
- linkedDataTypeRefreshRequestCompleted = "LinkedDataTypeRefreshRequestCompleted",
60785
- /**
60786
- * `RefreshModeChanged` represents the type of event registered on a `LinkedDataType` and occurs when the linked data type refresh mode is changed.
60787
- * @remarks
60788
- * [Api set: ExcelApi 1.7]
60789
- */
60790
- linkedDataTypeRefreshModeChanged = "LinkedDataTypeRefreshModeChanged",
60791
- /**
60792
- * `LinkedDataTypeAdded` represents the type of event registered on a `LinkedDataType` and occurs when a new linked data type is added to the workbook.
60793
- * @remarks
60794
- * [Api set: ExcelApi 1.7]
60795
- */
60796
- linkedDataTypeLinkedDataTypeAdded = "LinkedDataTypeLinkedDataTypeAdded",
60797
60774
  /**
60798
60775
  * `WorksheetFormulaChanged` represents the type of event registered on a worksheet and occurs when a formula is changed.
60799
60776
  * @remarks
@@ -62845,7 +62822,7 @@ declare namespace Excel {
62845
62822
  */
62846
62823
  enum SpecialCellValueType {
62847
62824
  /**
62848
- * Cells that have errors, boolean, numeric, or string values.
62825
+ * Cells that have errors, Boolean, numeric, or string values.
62849
62826
  * @remarks
62850
62827
  * [Api set: ExcelApi 1.9]
62851
62828
  */
@@ -62857,7 +62834,7 @@ declare namespace Excel {
62857
62834
  */
62858
62835
  errors = "Errors",
62859
62836
  /**
62860
- * Cells that have errors or boolean values.
62837
+ * Cells that have errors or Boolean values.
62861
62838
  * @remarks
62862
62839
  * [Api set: ExcelApi 1.9]
62863
62840
  */
@@ -62875,13 +62852,13 @@ declare namespace Excel {
62875
62852
  */
62876
62853
  errorsText = "ErrorsText",
62877
62854
  /**
62878
- * Cells that have errors, boolean, or numeric values.
62855
+ * Cells that have errors, Boolean, or numeric values.
62879
62856
  * @remarks
62880
62857
  * [Api set: ExcelApi 1.9]
62881
62858
  */
62882
62859
  errorsLogicalNumber = "ErrorsLogicalNumber",
62883
62860
  /**
62884
- * Cells that have errors, boolean, or string values.
62861
+ * Cells that have errors, Boolean, or string values.
62885
62862
  * @remarks
62886
62863
  * [Api set: ExcelApi 1.9]
62887
62864
  */
@@ -62893,25 +62870,25 @@ declare namespace Excel {
62893
62870
  */
62894
62871
  errorsNumberText = "ErrorsNumberText",
62895
62872
  /**
62896
- * Cells that have a boolean value.
62873
+ * Cells that have a Boolean value.
62897
62874
  * @remarks
62898
62875
  * [Api set: ExcelApi 1.9]
62899
62876
  */
62900
62877
  logical = "Logical",
62901
62878
  /**
62902
- * Cells that have a boolean or numeric value.
62879
+ * Cells that have a Boolean or numeric value.
62903
62880
  * @remarks
62904
62881
  * [Api set: ExcelApi 1.9]
62905
62882
  */
62906
62883
  logicalNumbers = "LogicalNumbers",
62907
62884
  /**
62908
- * Cells that have a boolean or string value.
62885
+ * Cells that have a Boolean or string value.
62909
62886
  * @remarks
62910
62887
  * [Api set: ExcelApi 1.9]
62911
62888
  */
62912
62889
  logicalText = "LogicalText",
62913
62890
  /**
62914
- * Cells that have a boolean, numeric, or string value.
62891
+ * Cells that have a Boolean, numeric, or string value.
62915
62892
  * @remarks
62916
62893
  * [Api set: ExcelApi 1.9]
62917
62894
  */
@@ -63510,7 +63487,7 @@ declare namespace Excel {
63510
63487
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
63511
63488
  context: RequestContext;
63512
63489
  /**
63513
- * Gets or sets the name of the sheet view.
63490
+ * Specifies the name of the sheet view.
63514
63491
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
63515
63492
  *
63516
63493
  * @remarks
@@ -67996,7 +67973,7 @@ declare namespace Excel {
67996
67973
  */
67997
67974
  style?: string;
67998
67975
  /**
67999
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
67976
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
68000
67977
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
68001
67978
  *
68002
67979
  * @remarks
@@ -68005,7 +67982,7 @@ declare namespace Excel {
68005
67982
  values?: any[][];
68006
67983
  /**
68007
67984
  * A JSON representation of the values in the cells in this range.
68008
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
67985
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68009
67986
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
68010
67987
  *
68011
67988
  * @remarks
@@ -68014,7 +67991,7 @@ declare namespace Excel {
68014
67991
  valuesAsJson?: CellValue[][];
68015
67992
  /**
68016
67993
  * A JSON representation of the values in the cells in this range.
68017
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
67994
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68018
67995
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
68019
67996
  *
68020
67997
  * @remarks
@@ -68079,7 +68056,7 @@ declare namespace Excel {
68079
68056
  */
68080
68057
  numberFormat?: any[][];
68081
68058
  /**
68082
- * Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
68059
+ * Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
68083
68060
  *
68084
68061
  * @remarks
68085
68062
  * [Api set: ExcelApi 1.3]
@@ -68087,7 +68064,7 @@ declare namespace Excel {
68087
68064
  values?: any[][];
68088
68065
  /**
68089
68066
  * A JSON representation of the values in the cells in this range.
68090
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68067
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68091
68068
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
68092
68069
  *
68093
68070
  * @remarks
@@ -68096,7 +68073,7 @@ declare namespace Excel {
68096
68073
  valuesAsJson?: CellValue[][];
68097
68074
  /**
68098
68075
  * A JSON representation of the values in the cells in this range.
68099
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68076
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68100
68077
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
68101
68078
  *
68102
68079
  * @remarks
@@ -68244,7 +68221,7 @@ declare namespace Excel {
68244
68221
  */
68245
68222
  name?: string;
68246
68223
  /**
68247
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
68224
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
68248
68225
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
68249
68226
  *
68250
68227
  * @remarks
@@ -68253,7 +68230,7 @@ declare namespace Excel {
68253
68230
  values?: any[][];
68254
68231
  /**
68255
68232
  * A JSON representation of the values in the cells in this table column.
68256
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68233
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68257
68234
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
68258
68235
  *
68259
68236
  * @remarks
@@ -68262,7 +68239,7 @@ declare namespace Excel {
68262
68239
  valuesAsJson?: CellValue[][];
68263
68240
  /**
68264
68241
  * A JSON representation of the values in the cells in this table column.
68265
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68242
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68266
68243
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
68267
68244
  *
68268
68245
  * @remarks
@@ -68277,7 +68254,7 @@ declare namespace Excel {
68277
68254
  /** An interface for updating data on the `TableRow` object, for use in `tableRow.set({ ... })`. */
68278
68255
  interface TableRowUpdateData {
68279
68256
  /**
68280
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
68257
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
68281
68258
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
68282
68259
  *
68283
68260
  * @remarks
@@ -68286,7 +68263,7 @@ declare namespace Excel {
68286
68263
  values?: any[][];
68287
68264
  /**
68288
68265
  * A JSON representation of the values in the cells in this table row.
68289
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68266
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68290
68267
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
68291
68268
  *
68292
68269
  * @remarks
@@ -68295,7 +68272,7 @@ declare namespace Excel {
68295
68272
  valuesAsJson?: CellValue[][];
68296
68273
  /**
68297
68274
  * A JSON representation of the values in the cells in this table row.
68298
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68275
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68299
68276
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
68300
68277
  *
68301
68278
  * @remarks
@@ -70177,7 +70154,7 @@ declare namespace Excel {
70177
70154
  */
70178
70155
  position?: Excel.ChartTitlePosition | "Automatic" | "Top" | "Bottom" | "Left" | "Right";
70179
70156
  /**
70180
- * Represents a boolean value that determines if the chart title has a shadow.
70157
+ * Represents a Boolean value that determines if the chart title has a shadow.
70181
70158
  *
70182
70159
  * @remarks
70183
70160
  * [Api set: ExcelApi 1.7]
@@ -71050,7 +71027,7 @@ declare namespace Excel {
71050
71027
  /** An interface for updating data on the `WorksheetCustomProperty` object, for use in `worksheetCustomProperty.set({ ... })`. */
71051
71028
  interface WorksheetCustomPropertyUpdateData {
71052
71029
  /**
71053
- * Gets or sets the value of the custom property.
71030
+ * Specifies the value of the custom property.
71054
71031
  *
71055
71032
  * @remarks
71056
71033
  * [Api set: ExcelApi 1.12]
@@ -72124,14 +72101,14 @@ declare namespace Excel {
72124
72101
  */
72125
72102
  state?: Excel.HeaderFooterState | "Default" | "FirstAndDefault" | "OddAndEven" | "FirstOddAndEven";
72126
72103
  /**
72127
- * Gets or sets a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
72104
+ * Specifies a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
72128
72105
  *
72129
72106
  * @remarks
72130
72107
  * [Api set: ExcelApi 1.9]
72131
72108
  */
72132
72109
  useSheetMargins?: boolean;
72133
72110
  /**
72134
- * Gets or sets a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
72111
+ * Specifies a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
72135
72112
  *
72136
72113
  * @remarks
72137
72114
  * [Api set: ExcelApi 1.9]
@@ -72665,7 +72642,7 @@ declare namespace Excel {
72665
72642
  /** An interface for updating data on the `NamedSheetView` object, for use in `namedSheetView.set({ ... })`. */
72666
72643
  interface NamedSheetViewUpdateData {
72667
72644
  /**
72668
- * Gets or sets the name of the sheet view.
72645
+ * Specifies the name of the sheet view.
72669
72646
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
72670
72647
  *
72671
72648
  * @remarks
@@ -73583,7 +73560,7 @@ declare namespace Excel {
73583
73560
  */
73584
73561
  valueTypes?: Excel.RangeValueType[][];
73585
73562
  /**
73586
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
73563
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
73587
73564
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
73588
73565
  *
73589
73566
  * @remarks
@@ -73592,7 +73569,7 @@ declare namespace Excel {
73592
73569
  values?: any[][];
73593
73570
  /**
73594
73571
  * A JSON representation of the values in the cells in this range.
73595
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73572
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73596
73573
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
73597
73574
  *
73598
73575
  * @remarks
@@ -73601,7 +73578,7 @@ declare namespace Excel {
73601
73578
  valuesAsJson?: CellValue[][];
73602
73579
  /**
73603
73580
  * A JSON representation of the values in the cells in this range.
73604
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73581
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73605
73582
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
73606
73583
  *
73607
73584
  * @remarks
@@ -73802,7 +73779,7 @@ declare namespace Excel {
73802
73779
  */
73803
73780
  valueTypes?: Excel.RangeValueType[][];
73804
73781
  /**
73805
- * Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
73782
+ * Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
73806
73783
  *
73807
73784
  * @remarks
73808
73785
  * [Api set: ExcelApi 1.3]
@@ -73810,7 +73787,7 @@ declare namespace Excel {
73810
73787
  values?: any[][];
73811
73788
  /**
73812
73789
  * A JSON representation of the values in the cells in this range.
73813
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73790
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73814
73791
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
73815
73792
  *
73816
73793
  * @remarks
@@ -73819,7 +73796,7 @@ declare namespace Excel {
73819
73796
  valuesAsJson?: CellValue[][];
73820
73797
  /**
73821
73798
  * A JSON representation of the values in the cells in this range.
73822
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73799
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73823
73800
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
73824
73801
  *
73825
73802
  * @remarks
@@ -73910,7 +73887,7 @@ declare namespace Excel {
73910
73887
  value?: any;
73911
73888
  /**
73912
73889
  * A JSON representation of the values in this named item.
73913
- Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73890
+ Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73914
73891
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItem.valueAsJsonLocal`.
73915
73892
  *
73916
73893
  * @remarks
@@ -73919,7 +73896,7 @@ declare namespace Excel {
73919
73896
  valueAsJson?: CellValue | string;
73920
73897
  /**
73921
73898
  * A JSON representation of the values in this named item.
73922
- Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73899
+ Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73923
73900
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItem.valueAsJson`.
73924
73901
  *
73925
73902
  * @remarks
@@ -73952,7 +73929,7 @@ declare namespace Excel {
73952
73929
  values?: any[][];
73953
73930
  /**
73954
73931
  * A JSON representation of the values in this named item array.
73955
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73932
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73956
73933
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItemArrayValues.valuesAsJsonLocal`.
73957
73934
  *
73958
73935
  * @remarks
@@ -73961,7 +73938,7 @@ declare namespace Excel {
73961
73938
  valuesAsJson?: CellValue[][];
73962
73939
  /**
73963
73940
  * A JSON representation of the values in this named item array.
73964
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73941
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73965
73942
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItemArrayValues.valuesAsJson`.
73966
73943
  *
73967
73944
  * @remarks
@@ -74143,7 +74120,7 @@ declare namespace Excel {
74143
74120
  */
74144
74121
  name?: string;
74145
74122
  /**
74146
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
74123
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
74147
74124
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
74148
74125
  *
74149
74126
  * @remarks
@@ -74152,7 +74129,7 @@ declare namespace Excel {
74152
74129
  values?: any[][];
74153
74130
  /**
74154
74131
  * A JSON representation of the values in the cells in this table column.
74155
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
74132
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
74156
74133
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
74157
74134
  *
74158
74135
  * @remarks
@@ -74161,7 +74138,7 @@ declare namespace Excel {
74161
74138
  valuesAsJson?: CellValue[][];
74162
74139
  /**
74163
74140
  * A JSON representation of the values in the cells in this table column.
74164
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
74141
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
74165
74142
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
74166
74143
  *
74167
74144
  * @remarks
@@ -74183,7 +74160,7 @@ declare namespace Excel {
74183
74160
  */
74184
74161
  index?: number;
74185
74162
  /**
74186
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
74163
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
74187
74164
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
74188
74165
  *
74189
74166
  * @remarks
@@ -74192,7 +74169,7 @@ declare namespace Excel {
74192
74169
  values?: any[][];
74193
74170
  /**
74194
74171
  * A JSON representation of the values in the cells in this table row.
74195
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
74172
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
74196
74173
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
74197
74174
  *
74198
74175
  * @remarks
@@ -74201,7 +74178,7 @@ declare namespace Excel {
74201
74178
  valuesAsJson?: CellValue[][];
74202
74179
  /**
74203
74180
  * A JSON representation of the values in the cells in this table row.
74204
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
74181
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
74205
74182
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
74206
74183
  *
74207
74184
  * @remarks
@@ -76289,7 +76266,7 @@ declare namespace Excel {
76289
76266
  */
76290
76267
  position?: Excel.ChartTitlePosition | "Automatic" | "Top" | "Bottom" | "Left" | "Right";
76291
76268
  /**
76292
- * Represents a boolean value that determines if the chart title has a shadow.
76269
+ * Represents a Boolean value that determines if the chart title has a shadow.
76293
76270
  *
76294
76271
  * @remarks
76295
76272
  * [Api set: ExcelApi 1.7]
@@ -77463,7 +77440,7 @@ declare namespace Excel {
77463
77440
  */
77464
77441
  key?: string;
77465
77442
  /**
77466
- * Gets or sets the value of the custom property.
77443
+ * Specifies the value of the custom property.
77467
77444
  *
77468
77445
  * @remarks
77469
77446
  * [Api set: ExcelApi 1.12]
@@ -78617,14 +78594,14 @@ declare namespace Excel {
78617
78594
  */
78618
78595
  state?: Excel.HeaderFooterState | "Default" | "FirstAndDefault" | "OddAndEven" | "FirstOddAndEven";
78619
78596
  /**
78620
- * Gets or sets a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
78597
+ * Specifies a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
78621
78598
  *
78622
78599
  * @remarks
78623
78600
  * [Api set: ExcelApi 1.9]
78624
78601
  */
78625
78602
  useSheetMargins?: boolean;
78626
78603
  /**
78627
- * Gets or sets a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
78604
+ * Specifies a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
78628
78605
  *
78629
78606
  * @remarks
78630
78607
  * [Api set: ExcelApi 1.9]
@@ -79532,7 +79509,7 @@ declare namespace Excel {
79532
79509
  /** An interface describing the data returned by calling `namedSheetView.toJSON()`. */
79533
79510
  interface NamedSheetViewData {
79534
79511
  /**
79535
- * Gets or sets the name of the sheet view.
79512
+ * Specifies the name of the sheet view.
79536
79513
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
79537
79514
  *
79538
79515
  * @remarks
@@ -80661,7 +80638,7 @@ declare namespace Excel {
80661
80638
  */
80662
80639
  valueTypes?: boolean;
80663
80640
  /**
80664
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
80641
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
80665
80642
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
80666
80643
  *
80667
80644
  * @remarks
@@ -80670,7 +80647,7 @@ declare namespace Excel {
80670
80647
  values?: boolean;
80671
80648
  /**
80672
80649
  * A JSON representation of the values in the cells in this range.
80673
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80650
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80674
80651
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
80675
80652
  *
80676
80653
  * @remarks
@@ -80679,7 +80656,7 @@ declare namespace Excel {
80679
80656
  valuesAsJson?: boolean;
80680
80657
  /**
80681
80658
  * A JSON representation of the values in the cells in this range.
80682
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80659
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80683
80660
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
80684
80661
  *
80685
80662
  * @remarks
@@ -80880,7 +80857,7 @@ declare namespace Excel {
80880
80857
  */
80881
80858
  valueTypes?: boolean;
80882
80859
  /**
80883
- * Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
80860
+ * Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
80884
80861
  *
80885
80862
  * @remarks
80886
80863
  * [Api set: ExcelApi 1.3]
@@ -80888,7 +80865,7 @@ declare namespace Excel {
80888
80865
  values?: boolean;
80889
80866
  /**
80890
80867
  * A JSON representation of the values in the cells in this range.
80891
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80868
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80892
80869
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
80893
80870
  *
80894
80871
  * @remarks
@@ -80897,7 +80874,7 @@ declare namespace Excel {
80897
80874
  valuesAsJson?: boolean;
80898
80875
  /**
80899
80876
  * A JSON representation of the values in the cells in this range.
80900
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80877
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80901
80878
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
80902
80879
  *
80903
80880
  * @remarks
@@ -80987,7 +80964,7 @@ declare namespace Excel {
80987
80964
  */
80988
80965
  valueTypes?: boolean;
80989
80966
  /**
80990
- * For EACH ITEM in the collection: Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
80967
+ * For EACH ITEM in the collection: Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
80991
80968
  *
80992
80969
  * @remarks
80993
80970
  * [Api set: ExcelApi 1.3]
@@ -80995,7 +80972,7 @@ declare namespace Excel {
80995
80972
  values?: boolean;
80996
80973
  /**
80997
80974
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this range.
80998
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80975
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80999
80976
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
81000
80977
  *
81001
80978
  * @remarks
@@ -81004,7 +80981,7 @@ declare namespace Excel {
81004
80981
  valuesAsJson?: boolean;
81005
80982
  /**
81006
80983
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this range.
81007
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80984
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81008
80985
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
81009
80986
  *
81010
80987
  * @remarks
@@ -81143,7 +81120,7 @@ declare namespace Excel {
81143
81120
  value?: boolean;
81144
81121
  /**
81145
81122
  * For EACH ITEM in the collection: A JSON representation of the values in this named item.
81146
- Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81123
+ Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81147
81124
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItem.valueAsJsonLocal`.
81148
81125
  *
81149
81126
  * @remarks
@@ -81152,7 +81129,7 @@ declare namespace Excel {
81152
81129
  valueAsJson?: boolean;
81153
81130
  /**
81154
81131
  * For EACH ITEM in the collection: A JSON representation of the values in this named item.
81155
- Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81132
+ Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81156
81133
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItem.valueAsJson`.
81157
81134
  *
81158
81135
  * @remarks
@@ -81246,7 +81223,7 @@ declare namespace Excel {
81246
81223
  value?: boolean;
81247
81224
  /**
81248
81225
  * A JSON representation of the values in this named item.
81249
- Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81226
+ Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81250
81227
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItem.valueAsJsonLocal`.
81251
81228
  *
81252
81229
  * @remarks
@@ -81255,7 +81232,7 @@ declare namespace Excel {
81255
81232
  valueAsJson?: boolean;
81256
81233
  /**
81257
81234
  * A JSON representation of the values in this named item.
81258
- Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81235
+ Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81259
81236
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItem.valueAsJson`.
81260
81237
  *
81261
81238
  * @remarks
@@ -81297,7 +81274,7 @@ declare namespace Excel {
81297
81274
  values?: boolean;
81298
81275
  /**
81299
81276
  * A JSON representation of the values in this named item array.
81300
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81277
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81301
81278
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItemArrayValues.valuesAsJsonLocal`.
81302
81279
  *
81303
81280
  * @remarks
@@ -81306,7 +81283,7 @@ declare namespace Excel {
81306
81283
  valuesAsJson?: boolean;
81307
81284
  /**
81308
81285
  * A JSON representation of the values in this named item array.
81309
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81286
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81310
81287
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItemArrayValues.valuesAsJson`.
81311
81288
  *
81312
81289
  * @remarks
@@ -81785,7 +81762,7 @@ declare namespace Excel {
81785
81762
  */
81786
81763
  name?: boolean;
81787
81764
  /**
81788
- * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
81765
+ * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
81789
81766
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
81790
81767
  *
81791
81768
  * @remarks
@@ -81794,7 +81771,7 @@ declare namespace Excel {
81794
81771
  values?: boolean;
81795
81772
  /**
81796
81773
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this table column.
81797
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81774
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81798
81775
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
81799
81776
  *
81800
81777
  * @remarks
@@ -81803,7 +81780,7 @@ declare namespace Excel {
81803
81780
  valuesAsJson?: boolean;
81804
81781
  /**
81805
81782
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this table column.
81806
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81783
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81807
81784
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
81808
81785
  *
81809
81786
  * @remarks
@@ -81851,7 +81828,7 @@ declare namespace Excel {
81851
81828
  */
81852
81829
  name?: boolean;
81853
81830
  /**
81854
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
81831
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
81855
81832
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
81856
81833
  *
81857
81834
  * @remarks
@@ -81860,7 +81837,7 @@ declare namespace Excel {
81860
81837
  values?: boolean;
81861
81838
  /**
81862
81839
  * A JSON representation of the values in the cells in this table column.
81863
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81840
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81864
81841
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
81865
81842
  *
81866
81843
  * @remarks
@@ -81869,7 +81846,7 @@ declare namespace Excel {
81869
81846
  valuesAsJson?: boolean;
81870
81847
  /**
81871
81848
  * A JSON representation of the values in the cells in this table column.
81872
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81849
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81873
81850
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
81874
81851
  *
81875
81852
  * @remarks
@@ -81901,7 +81878,7 @@ declare namespace Excel {
81901
81878
  */
81902
81879
  index?: boolean;
81903
81880
  /**
81904
- * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
81881
+ * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
81905
81882
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
81906
81883
  *
81907
81884
  * @remarks
@@ -81910,7 +81887,7 @@ declare namespace Excel {
81910
81887
  values?: boolean;
81911
81888
  /**
81912
81889
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this table row.
81913
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81890
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81914
81891
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
81915
81892
  *
81916
81893
  * @remarks
@@ -81919,7 +81896,7 @@ declare namespace Excel {
81919
81896
  valuesAsJson?: boolean;
81920
81897
  /**
81921
81898
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this table row.
81922
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81899
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81923
81900
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
81924
81901
  *
81925
81902
  * @remarks
@@ -81951,7 +81928,7 @@ declare namespace Excel {
81951
81928
  */
81952
81929
  index?: boolean;
81953
81930
  /**
81954
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
81931
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
81955
81932
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
81956
81933
  *
81957
81934
  * @remarks
@@ -81960,7 +81937,7 @@ declare namespace Excel {
81960
81937
  values?: boolean;
81961
81938
  /**
81962
81939
  * A JSON representation of the values in the cells in this table row.
81963
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81940
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81964
81941
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
81965
81942
  *
81966
81943
  * @remarks
@@ -81969,7 +81946,7 @@ declare namespace Excel {
81969
81946
  valuesAsJson?: boolean;
81970
81947
  /**
81971
81948
  * A JSON representation of the values in the cells in this table row.
81972
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81949
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81973
81950
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
81974
81951
  *
81975
81952
  * @remarks
@@ -85021,7 +84998,7 @@ declare namespace Excel {
85021
84998
  */
85022
84999
  position?: boolean;
85023
85000
  /**
85024
- * Represents a boolean value that determines if the chart title has a shadow.
85001
+ * Represents a Boolean value that determines if the chart title has a shadow.
85025
85002
  *
85026
85003
  * @remarks
85027
85004
  * [Api set: ExcelApi 1.7]
@@ -86902,7 +86879,7 @@ declare namespace Excel {
86902
86879
  */
86903
86880
  key?: boolean;
86904
86881
  /**
86905
- * Gets or sets the value of the custom property.
86882
+ * Specifies the value of the custom property.
86906
86883
  *
86907
86884
  * @remarks
86908
86885
  * [Api set: ExcelApi 1.12]
@@ -86928,7 +86905,7 @@ declare namespace Excel {
86928
86905
  */
86929
86906
  key?: boolean;
86930
86907
  /**
86931
- * For EACH ITEM in the collection: Gets or sets the value of the custom property.
86908
+ * For EACH ITEM in the collection: Specifies the value of the custom property.
86932
86909
  *
86933
86910
  * @remarks
86934
86911
  * [Api set: ExcelApi 1.12]
@@ -88771,14 +88748,14 @@ declare namespace Excel {
88771
88748
  */
88772
88749
  state?: boolean;
88773
88750
  /**
88774
- * Gets or sets a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
88751
+ * Specifies a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
88775
88752
  *
88776
88753
  * @remarks
88777
88754
  * [Api set: ExcelApi 1.9]
88778
88755
  */
88779
88756
  useSheetMargins?: boolean;
88780
88757
  /**
88781
- * Gets or sets a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
88758
+ * Specifies a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
88782
88759
  *
88783
88760
  * @remarks
88784
88761
  * [Api set: ExcelApi 1.9]
@@ -89076,7 +89053,7 @@ declare namespace Excel {
89076
89053
  */
89077
89054
  valueTypes?: boolean;
89078
89055
  /**
89079
- * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
89056
+ * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
89080
89057
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
89081
89058
  *
89082
89059
  * @remarks
@@ -89085,7 +89062,7 @@ declare namespace Excel {
89085
89062
  values?: boolean;
89086
89063
  /**
89087
89064
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this range.
89088
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
89065
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
89089
89066
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
89090
89067
  *
89091
89068
  * @remarks
@@ -89094,7 +89071,7 @@ declare namespace Excel {
89094
89071
  valuesAsJson?: boolean;
89095
89072
  /**
89096
89073
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this range.
89097
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
89074
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
89098
89075
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
89099
89076
  *
89100
89077
  * @remarks
@@ -91070,7 +91047,7 @@ declare namespace Excel {
91070
91047
  */
91071
91048
  $all?: boolean;
91072
91049
  /**
91073
- * Gets or sets the name of the sheet view.
91050
+ * Specifies the name of the sheet view.
91074
91051
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
91075
91052
  *
91076
91053
  * @remarks
@@ -91090,7 +91067,7 @@ declare namespace Excel {
91090
91067
  */
91091
91068
  $all?: boolean;
91092
91069
  /**
91093
- * For EACH ITEM in the collection: Gets or sets the name of the sheet view.
91070
+ * For EACH ITEM in the collection: Specifies the name of the sheet view.
91094
91071
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
91095
91072
  *
91096
91073
  * @remarks
office-js/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js",
3
- "version": "1.0.535",
3
+ "version": "1.0.537",
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": "a3c55c36e1684d7ead907668517a3b90f326b42b1d74a0dcf7f089f6772567d5",
49
+ "typesPublisherContentHash": "564ddc4468e8a13cd493a15321831db9feee52b4da3e49978a684bf368f246b9",
50
50
  "typeScriptVersion": "5.2"
51
51
  }