@types/office-js-preview 1.0.263 → 1.0.264
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- office-js-preview/README.md +1 -1
- office-js-preview/index.d.ts +283 -61
- office-js-preview/package.json +2 -2
office-js-preview/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Office.js (https://github.com/OfficeD
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 29 Oct 2021 22:31:30 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Excel`, `Office`, `OfficeCore`, `OfficeExtension`, `OneNote`, `PowerPoint`, `Visio`, `Word`
|
|
14
14
|
|
office-js-preview/index.d.ts
CHANGED
|
@@ -19085,6 +19085,47 @@ declare namespace OfficeCore {
|
|
|
19085
19085
|
|
|
19086
19086
|
|
|
19087
19087
|
declare namespace Excel {
|
|
19088
|
+
/**
|
|
19089
|
+
* Represents a 2D array of cell values.
|
|
19090
|
+
*
|
|
19091
|
+
* @remarks
|
|
19092
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19093
|
+
* @beta
|
|
19094
|
+
*/
|
|
19095
|
+
interface ArrayCellValue {
|
|
19096
|
+
/**
|
|
19097
|
+
* Represents the type of this cell value.
|
|
19098
|
+
*
|
|
19099
|
+
* @remarks
|
|
19100
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19101
|
+
* @beta
|
|
19102
|
+
*/
|
|
19103
|
+
type: CellValueType.array | "Array";
|
|
19104
|
+
/**
|
|
19105
|
+
* Represents the value that would be returned by `Range.values` for a cell with this value.
|
|
19106
|
+
*
|
|
19107
|
+
* @remarks
|
|
19108
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19109
|
+
* @beta
|
|
19110
|
+
*/
|
|
19111
|
+
basicValue?: "#VALUE!";
|
|
19112
|
+
/**
|
|
19113
|
+
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19114
|
+
*
|
|
19115
|
+
* @remarks
|
|
19116
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19117
|
+
* @beta
|
|
19118
|
+
*/
|
|
19119
|
+
basicType?: RangeValueType.error | "Error";
|
|
19120
|
+
/**
|
|
19121
|
+
* Represents the elements of the array. May not directly contain an `ArrayCellValue`.
|
|
19122
|
+
*
|
|
19123
|
+
* @remarks
|
|
19124
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19125
|
+
* @beta
|
|
19126
|
+
*/
|
|
19127
|
+
elements: CellValue[][];
|
|
19128
|
+
}
|
|
19088
19129
|
/**
|
|
19089
19130
|
* Represents types of #BLOCKED! errors.
|
|
19090
19131
|
*
|
|
@@ -19181,7 +19222,7 @@ declare namespace Excel {
|
|
|
19181
19222
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19182
19223
|
* @beta
|
|
19183
19224
|
*/
|
|
19184
|
-
|
|
19225
|
+
basicValue?: "#BLOCKED!";
|
|
19185
19226
|
/**
|
|
19186
19227
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19187
19228
|
*
|
|
@@ -19189,7 +19230,7 @@ declare namespace Excel {
|
|
|
19189
19230
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19190
19231
|
* @beta
|
|
19191
19232
|
*/
|
|
19192
|
-
|
|
19233
|
+
basicType?: RangeValueType.error | "Error";
|
|
19193
19234
|
/**
|
|
19194
19235
|
* Represents the type of `ErrorCellValue`.
|
|
19195
19236
|
*
|
|
@@ -19230,7 +19271,7 @@ declare namespace Excel {
|
|
|
19230
19271
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19231
19272
|
* @beta
|
|
19232
19273
|
*/
|
|
19233
|
-
|
|
19274
|
+
basicValue: boolean;
|
|
19234
19275
|
/**
|
|
19235
19276
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19236
19277
|
*
|
|
@@ -19238,7 +19279,7 @@ declare namespace Excel {
|
|
|
19238
19279
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19239
19280
|
* @beta
|
|
19240
19281
|
*/
|
|
19241
|
-
|
|
19282
|
+
basicType?: RangeValueType.boolean | "Boolean";
|
|
19242
19283
|
}
|
|
19243
19284
|
/**
|
|
19244
19285
|
* Represents types of #BUSY! errors.
|
|
@@ -19296,7 +19337,7 @@ declare namespace Excel {
|
|
|
19296
19337
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19297
19338
|
* @beta
|
|
19298
19339
|
*/
|
|
19299
|
-
|
|
19340
|
+
basicValue?: "#BUSY!";
|
|
19300
19341
|
/**
|
|
19301
19342
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19302
19343
|
*
|
|
@@ -19304,7 +19345,7 @@ declare namespace Excel {
|
|
|
19304
19345
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19305
19346
|
* @beta
|
|
19306
19347
|
*/
|
|
19307
|
-
|
|
19348
|
+
basicType?: RangeValueType.error | "Error";
|
|
19308
19349
|
/**
|
|
19309
19350
|
* Represents the type of `ErrorCellValue`.
|
|
19310
19351
|
*
|
|
@@ -19418,7 +19459,7 @@ declare namespace Excel {
|
|
|
19418
19459
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19419
19460
|
* @beta
|
|
19420
19461
|
*/
|
|
19421
|
-
|
|
19462
|
+
basicValue?: "#CALC!";
|
|
19422
19463
|
/**
|
|
19423
19464
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19424
19465
|
*
|
|
@@ -19426,7 +19467,7 @@ declare namespace Excel {
|
|
|
19426
19467
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19427
19468
|
* @beta
|
|
19428
19469
|
*/
|
|
19429
|
-
|
|
19470
|
+
basicType?: RangeValueType.error | "Error";
|
|
19430
19471
|
/**
|
|
19431
19472
|
* Represents the type of `ErrorCellValue`.
|
|
19432
19473
|
*
|
|
@@ -19452,6 +19493,14 @@ declare namespace Excel {
|
|
|
19452
19493
|
* @beta
|
|
19453
19494
|
*/
|
|
19454
19495
|
enum CellValueType {
|
|
19496
|
+
/**
|
|
19497
|
+
* Represents an `ArrayCellValue`.
|
|
19498
|
+
*
|
|
19499
|
+
* @remarks
|
|
19500
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19501
|
+
* @beta
|
|
19502
|
+
*/
|
|
19503
|
+
array = "Array",
|
|
19455
19504
|
/**
|
|
19456
19505
|
* Represents a `BooleanCellValue`.
|
|
19457
19506
|
*
|
|
@@ -19469,6 +19518,14 @@ declare namespace Excel {
|
|
|
19469
19518
|
*/
|
|
19470
19519
|
double = "Double",
|
|
19471
19520
|
/**
|
|
19521
|
+
* Represents an `EntityCellValue`.
|
|
19522
|
+
*
|
|
19523
|
+
* @remarks
|
|
19524
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19525
|
+
* @beta
|
|
19526
|
+
*/
|
|
19527
|
+
entity = "Entity",
|
|
19528
|
+
/**
|
|
19472
19529
|
* Represents an `EmptyCellValue`.
|
|
19473
19530
|
*
|
|
19474
19531
|
* @remarks
|
|
@@ -19518,6 +19575,34 @@ declare namespace Excel {
|
|
|
19518
19575
|
webImage = "WebImage"
|
|
19519
19576
|
}
|
|
19520
19577
|
/**
|
|
19578
|
+
* Represents the value in a cell.
|
|
19579
|
+
*
|
|
19580
|
+
* @remarks
|
|
19581
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19582
|
+
* @beta
|
|
19583
|
+
*/
|
|
19584
|
+
type CellValue = ArrayCellValue | BooleanCellValue | DoubleCellValue | EntityCellValue | EmptyCellValue | ErrorCellValue | FormattedNumberCellValue | StringCellValue | ValueTypeNotAvailableCellValue | WebImageCellValue & {
|
|
19585
|
+
/**
|
|
19586
|
+
* Represents whether this `CellValue` will be used to overwrite a cell.
|
|
19587
|
+
* When false, APIs which would use this `CellValue` to overwrite a cell will instead ignore this value without throwing an error.
|
|
19588
|
+
* The default value is true.
|
|
19589
|
+
*
|
|
19590
|
+
* @remarks
|
|
19591
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19592
|
+
* @beta
|
|
19593
|
+
*/
|
|
19594
|
+
writable?: boolean;
|
|
19595
|
+
/**
|
|
19596
|
+
* Represents an explanation about why `CellValue.writable` is specified as false.
|
|
19597
|
+
* Note: This string is only available if `writable` is specified as false.
|
|
19598
|
+
*
|
|
19599
|
+
* @remarks
|
|
19600
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19601
|
+
* @beta
|
|
19602
|
+
*/
|
|
19603
|
+
writableNote?: string;
|
|
19604
|
+
};
|
|
19605
|
+
/**
|
|
19521
19606
|
* The attribution attributes object represents the set of details that can be used to describe where information came from, if the information comes from a public source.
|
|
19522
19607
|
*
|
|
19523
19608
|
* @remarks
|
|
@@ -19593,6 +19678,80 @@ declare namespace Excel {
|
|
|
19593
19678
|
logoTargetAddress?: string;
|
|
19594
19679
|
}
|
|
19595
19680
|
/**
|
|
19681
|
+
* Metadata about a property in `EntityCellValue.properties`.
|
|
19682
|
+
*
|
|
19683
|
+
* @remarks
|
|
19684
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19685
|
+
* @beta
|
|
19686
|
+
*/
|
|
19687
|
+
interface CellValuePropertyMetadata {
|
|
19688
|
+
/**
|
|
19689
|
+
* Represents which features this property is excluded from.
|
|
19690
|
+
*
|
|
19691
|
+
* @remarks
|
|
19692
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19693
|
+
* @beta
|
|
19694
|
+
*/
|
|
19695
|
+
excludeFrom?: CellValuePropertyMetadataExclusions;
|
|
19696
|
+
/**
|
|
19697
|
+
* Represents the sublabel for this property shown in card view.
|
|
19698
|
+
*
|
|
19699
|
+
* @remarks
|
|
19700
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19701
|
+
* @beta
|
|
19702
|
+
*/
|
|
19703
|
+
sublabel?: string;
|
|
19704
|
+
/**
|
|
19705
|
+
* Represents attribution information to describe the source and license requirements for using this property.
|
|
19706
|
+
*
|
|
19707
|
+
* @remarks
|
|
19708
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19709
|
+
* @beta
|
|
19710
|
+
*/
|
|
19711
|
+
attribution?: CellValueAttributionAttributes[];
|
|
19712
|
+
}
|
|
19713
|
+
/**
|
|
19714
|
+
* Represents the exclusion of a property in `EntityCellValue.properties` from features of Excel.
|
|
19715
|
+
*
|
|
19716
|
+
* @remarks
|
|
19717
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19718
|
+
* @beta
|
|
19719
|
+
*/
|
|
19720
|
+
interface CellValuePropertyMetadataExclusions {
|
|
19721
|
+
/**
|
|
19722
|
+
* True represents that the property is excluded from the properties shown by card view. False and undefined represent the default behavior of including the property.
|
|
19723
|
+
*
|
|
19724
|
+
* @remarks
|
|
19725
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19726
|
+
* @beta
|
|
19727
|
+
*/
|
|
19728
|
+
cardView?: boolean;
|
|
19729
|
+
/**
|
|
19730
|
+
* True represents that the property is excluded from the properties shown by auto complete. False and undefined represent the default behavior of including the property.
|
|
19731
|
+
*
|
|
19732
|
+
* @remarks
|
|
19733
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19734
|
+
* @beta
|
|
19735
|
+
*/
|
|
19736
|
+
autoComplete?: boolean;
|
|
19737
|
+
/**
|
|
19738
|
+
* True represents that the property is excluded from the properties used to compare cell values during recalc. False and undefined represent the default behavior of including the property.
|
|
19739
|
+
*
|
|
19740
|
+
* @remarks
|
|
19741
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19742
|
+
* @beta
|
|
19743
|
+
*/
|
|
19744
|
+
calcCompare?: boolean;
|
|
19745
|
+
/**
|
|
19746
|
+
* True represents that the property is excluded from the properties which can be accessed via the FIELDVALUE function. False and undefined represent the default behavior of including the property.
|
|
19747
|
+
*
|
|
19748
|
+
* @remarks
|
|
19749
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19750
|
+
* @beta
|
|
19751
|
+
*/
|
|
19752
|
+
dotNotation?: boolean;
|
|
19753
|
+
}
|
|
19754
|
+
/**
|
|
19596
19755
|
* Represents types of #CONNECT! errors.
|
|
19597
19756
|
*
|
|
19598
19757
|
* @remarks
|
|
@@ -19760,7 +19919,7 @@ declare namespace Excel {
|
|
|
19760
19919
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19761
19920
|
* @beta
|
|
19762
19921
|
*/
|
|
19763
|
-
|
|
19922
|
+
basicValue?: "#CONNECT!";
|
|
19764
19923
|
/**
|
|
19765
19924
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19766
19925
|
*
|
|
@@ -19768,7 +19927,7 @@ declare namespace Excel {
|
|
|
19768
19927
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19769
19928
|
* @beta
|
|
19770
19929
|
*/
|
|
19771
|
-
|
|
19930
|
+
basicType?: RangeValueType.error | "Error";
|
|
19772
19931
|
/**
|
|
19773
19932
|
* Represents the type of `ErrorCellValue`.
|
|
19774
19933
|
*
|
|
@@ -19809,7 +19968,7 @@ declare namespace Excel {
|
|
|
19809
19968
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19810
19969
|
* @beta
|
|
19811
19970
|
*/
|
|
19812
|
-
|
|
19971
|
+
basicValue?: "#DIV/0!";
|
|
19813
19972
|
/**
|
|
19814
19973
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19815
19974
|
*
|
|
@@ -19817,7 +19976,7 @@ declare namespace Excel {
|
|
|
19817
19976
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19818
19977
|
* @beta
|
|
19819
19978
|
*/
|
|
19820
|
-
|
|
19979
|
+
basicType?: RangeValueType.error | "Error";
|
|
19821
19980
|
/**
|
|
19822
19981
|
* Represents the type of `ErrorCellValue`.
|
|
19823
19982
|
*
|
|
@@ -19850,7 +20009,7 @@ declare namespace Excel {
|
|
|
19850
20009
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19851
20010
|
* @beta
|
|
19852
20011
|
*/
|
|
19853
|
-
|
|
20012
|
+
basicValue: number;
|
|
19854
20013
|
/**
|
|
19855
20014
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19856
20015
|
*
|
|
@@ -19858,7 +20017,7 @@ declare namespace Excel {
|
|
|
19858
20017
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19859
20018
|
* @beta
|
|
19860
20019
|
*/
|
|
19861
|
-
|
|
20020
|
+
basicType?: RangeValueType.double | "Double";
|
|
19862
20021
|
}
|
|
19863
20022
|
/**
|
|
19864
20023
|
* Represents the value of a cell that's empty and has no formulas or data.
|
|
@@ -19883,7 +20042,40 @@ declare namespace Excel {
|
|
|
19883
20042
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19884
20043
|
* @beta
|
|
19885
20044
|
*/
|
|
19886
|
-
|
|
20045
|
+
basicValue?: "";
|
|
20046
|
+
/**
|
|
20047
|
+
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20048
|
+
*
|
|
20049
|
+
* @remarks
|
|
20050
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20051
|
+
* @beta
|
|
20052
|
+
*/
|
|
20053
|
+
basicType?: RangeValueType.empty | "Empty";
|
|
20054
|
+
}
|
|
20055
|
+
/**
|
|
20056
|
+
* Represents an schemaless set of properties.
|
|
20057
|
+
*
|
|
20058
|
+
* @remarks
|
|
20059
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20060
|
+
* @beta
|
|
20061
|
+
*/
|
|
20062
|
+
interface EntityCellValue {
|
|
20063
|
+
/**
|
|
20064
|
+
* Represents the type of this cell value.
|
|
20065
|
+
*
|
|
20066
|
+
* @remarks
|
|
20067
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20068
|
+
* @beta
|
|
20069
|
+
*/
|
|
20070
|
+
type: CellValueType.entity | "Entity";
|
|
20071
|
+
/**
|
|
20072
|
+
* Represents the value that would be returned by `Range.values` for a cell with this value.
|
|
20073
|
+
*
|
|
20074
|
+
* @remarks
|
|
20075
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20076
|
+
* @beta
|
|
20077
|
+
*/
|
|
20078
|
+
basicValue?: "#VALUE!";
|
|
19887
20079
|
/**
|
|
19888
20080
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19889
20081
|
*
|
|
@@ -19891,7 +20083,27 @@ declare namespace Excel {
|
|
|
19891
20083
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19892
20084
|
* @beta
|
|
19893
20085
|
*/
|
|
19894
|
-
|
|
20086
|
+
basicType?: RangeValueType.error | "Error";
|
|
20087
|
+
/**
|
|
20088
|
+
* Represents the text shown when a cell with this value is rendered.
|
|
20089
|
+
*
|
|
20090
|
+
* @remarks
|
|
20091
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20092
|
+
* @beta
|
|
20093
|
+
*/
|
|
20094
|
+
text?: string;
|
|
20095
|
+
/**
|
|
20096
|
+
* Represents the properties of this entity and their metadata.
|
|
20097
|
+
*
|
|
20098
|
+
* @remarks
|
|
20099
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20100
|
+
* @beta
|
|
20101
|
+
*/
|
|
20102
|
+
properties?: {
|
|
20103
|
+
[key: string]: CellValue & {
|
|
20104
|
+
propertyMetadata?: CellValuePropertyMetadata;
|
|
20105
|
+
};
|
|
20106
|
+
};
|
|
19895
20107
|
}
|
|
19896
20108
|
/**
|
|
19897
20109
|
* Represents the types of the `ErrorCellValue` object.
|
|
@@ -19958,13 +20170,13 @@ declare namespace Excel {
|
|
|
19958
20170
|
*/
|
|
19959
20171
|
gettingData = "GettingData",
|
|
19960
20172
|
/**
|
|
19961
|
-
* Represents a `
|
|
20173
|
+
* Represents a `NotAvailableErrorCellValue`.
|
|
19962
20174
|
*
|
|
19963
20175
|
* @remarks
|
|
19964
20176
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19965
20177
|
* @beta
|
|
19966
20178
|
*/
|
|
19967
|
-
|
|
20179
|
+
notAvailable = "NotAvailable",
|
|
19968
20180
|
/**
|
|
19969
20181
|
* Represents a `NameErrorCellValue`.
|
|
19970
20182
|
*
|
|
@@ -20015,6 +20227,14 @@ declare namespace Excel {
|
|
|
20015
20227
|
value = "Value"
|
|
20016
20228
|
}
|
|
20017
20229
|
/**
|
|
20230
|
+
* Represents a cell value which contains an error.
|
|
20231
|
+
*
|
|
20232
|
+
* @remarks
|
|
20233
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20234
|
+
* @beta
|
|
20235
|
+
*/
|
|
20236
|
+
type ErrorCellValue = BlockedErrorCellValue | BusyErrorCellValue | CalcErrorCellValue | ConnectErrorCellValue | Div0ErrorCellValue | FieldErrorCellValue | GettingDataErrorCellValue | NotAvailableErrorCellValue | NameErrorCellValue | NullErrorCellValue | NumErrorCellValue | RefErrorCellValue | SpillErrorCellValue | ValueErrorCellValue;
|
|
20237
|
+
/**
|
|
20018
20238
|
* Represents types of #FIELD! errors.
|
|
20019
20239
|
*
|
|
20020
20240
|
* @remarks
|
|
@@ -20070,7 +20290,7 @@ declare namespace Excel {
|
|
|
20070
20290
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20071
20291
|
* @beta
|
|
20072
20292
|
*/
|
|
20073
|
-
|
|
20293
|
+
basicValue?: "#FIELD!";
|
|
20074
20294
|
/**
|
|
20075
20295
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20076
20296
|
*
|
|
@@ -20078,7 +20298,7 @@ declare namespace Excel {
|
|
|
20078
20298
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20079
20299
|
* @beta
|
|
20080
20300
|
*/
|
|
20081
|
-
|
|
20301
|
+
basicType?: RangeValueType.error | "Error";
|
|
20082
20302
|
/**
|
|
20083
20303
|
* Represents the type of `ErrorCellValue`.
|
|
20084
20304
|
*
|
|
@@ -20120,7 +20340,7 @@ declare namespace Excel {
|
|
|
20120
20340
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20121
20341
|
* @beta
|
|
20122
20342
|
*/
|
|
20123
|
-
|
|
20343
|
+
basicValue: number;
|
|
20124
20344
|
/**
|
|
20125
20345
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20126
20346
|
*
|
|
@@ -20128,7 +20348,7 @@ declare namespace Excel {
|
|
|
20128
20348
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20129
20349
|
* @beta
|
|
20130
20350
|
*/
|
|
20131
|
-
|
|
20351
|
+
basicType?: RangeValueType.double | "Double";
|
|
20132
20352
|
/**
|
|
20133
20353
|
* Returns the number format string that is used to display this value.
|
|
20134
20354
|
* Number format strings must conform to Excel guidelines. To learn more, see {@link https://support.microsoft.com/office/review-guidelines-for-customizing-a-number-format-c0a1d1fa-d3f4-4018-96b7-9c9354dd99f5 | Review guidelines for customizing a number format}.
|
|
@@ -20162,7 +20382,7 @@ declare namespace Excel {
|
|
|
20162
20382
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20163
20383
|
* @beta
|
|
20164
20384
|
*/
|
|
20165
|
-
|
|
20385
|
+
basicValue?: "#GETTING_DATA";
|
|
20166
20386
|
/**
|
|
20167
20387
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20168
20388
|
*
|
|
@@ -20170,7 +20390,7 @@ declare namespace Excel {
|
|
|
20170
20390
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20171
20391
|
* @beta
|
|
20172
20392
|
*/
|
|
20173
|
-
|
|
20393
|
+
basicType?: RangeValueType.error | "Error";
|
|
20174
20394
|
/**
|
|
20175
20395
|
* Represents the type of `ErrorCellValue`.
|
|
20176
20396
|
*
|
|
@@ -20187,7 +20407,7 @@ declare namespace Excel {
|
|
|
20187
20407
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20188
20408
|
* @beta
|
|
20189
20409
|
*/
|
|
20190
|
-
interface
|
|
20410
|
+
interface NotAvailableErrorCellValue {
|
|
20191
20411
|
/**
|
|
20192
20412
|
* Represents the type of this cell value.
|
|
20193
20413
|
*
|
|
@@ -20203,7 +20423,7 @@ declare namespace Excel {
|
|
|
20203
20423
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20204
20424
|
* @beta
|
|
20205
20425
|
*/
|
|
20206
|
-
|
|
20426
|
+
basicValue?: "#N/A!";
|
|
20207
20427
|
/**
|
|
20208
20428
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20209
20429
|
*
|
|
@@ -20211,7 +20431,7 @@ declare namespace Excel {
|
|
|
20211
20431
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20212
20432
|
* @beta
|
|
20213
20433
|
*/
|
|
20214
|
-
|
|
20434
|
+
basicType?: RangeValueType.error | "Error";
|
|
20215
20435
|
/**
|
|
20216
20436
|
* Represents the type of `ErrorCellValue`.
|
|
20217
20437
|
*
|
|
@@ -20219,7 +20439,7 @@ declare namespace Excel {
|
|
|
20219
20439
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20220
20440
|
* @beta
|
|
20221
20441
|
*/
|
|
20222
|
-
errorType?: ErrorCellValueType.
|
|
20442
|
+
errorType?: ErrorCellValueType.notAvailable | "NotAvailable";
|
|
20223
20443
|
}
|
|
20224
20444
|
/**
|
|
20225
20445
|
* Represents the value of a cell containing a #NAME? error.
|
|
@@ -20244,7 +20464,7 @@ declare namespace Excel {
|
|
|
20244
20464
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20245
20465
|
* @beta
|
|
20246
20466
|
*/
|
|
20247
|
-
|
|
20467
|
+
basicValue?: "#NAME?";
|
|
20248
20468
|
/**
|
|
20249
20469
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20250
20470
|
*
|
|
@@ -20252,7 +20472,7 @@ declare namespace Excel {
|
|
|
20252
20472
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20253
20473
|
* @beta
|
|
20254
20474
|
*/
|
|
20255
|
-
|
|
20475
|
+
basicType?: RangeValueType.error | "Error";
|
|
20256
20476
|
/**
|
|
20257
20477
|
* Represents the type of `ErrorCellValue`.
|
|
20258
20478
|
*
|
|
@@ -20285,7 +20505,7 @@ declare namespace Excel {
|
|
|
20285
20505
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20286
20506
|
* @beta
|
|
20287
20507
|
*/
|
|
20288
|
-
|
|
20508
|
+
basicValue?: "#NULL!";
|
|
20289
20509
|
/**
|
|
20290
20510
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20291
20511
|
*
|
|
@@ -20293,7 +20513,7 @@ declare namespace Excel {
|
|
|
20293
20513
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20294
20514
|
* @beta
|
|
20295
20515
|
*/
|
|
20296
|
-
|
|
20516
|
+
basicType?: RangeValueType.error | "Error";
|
|
20297
20517
|
/**
|
|
20298
20518
|
* Represents the type of `ErrorCellValue`.
|
|
20299
20519
|
*
|
|
@@ -20326,7 +20546,7 @@ declare namespace Excel {
|
|
|
20326
20546
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20327
20547
|
* @beta
|
|
20328
20548
|
*/
|
|
20329
|
-
|
|
20549
|
+
basicValue?: "#NUM!";
|
|
20330
20550
|
/**
|
|
20331
20551
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20332
20552
|
*
|
|
@@ -20334,7 +20554,7 @@ declare namespace Excel {
|
|
|
20334
20554
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20335
20555
|
* @beta
|
|
20336
20556
|
*/
|
|
20337
|
-
|
|
20557
|
+
basicType?: RangeValueType.error | "Error";
|
|
20338
20558
|
/**
|
|
20339
20559
|
* Represents the type of `ErrorCellValue`.
|
|
20340
20560
|
*
|
|
@@ -20367,7 +20587,7 @@ declare namespace Excel {
|
|
|
20367
20587
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20368
20588
|
* @beta
|
|
20369
20589
|
*/
|
|
20370
|
-
|
|
20590
|
+
vlookupColumnIndexGreaterThanNumColumns = "VlookupColumnIndexGreaterThanNumColumns",
|
|
20371
20591
|
/**
|
|
20372
20592
|
* An error caused by a row_index_num parameter of HLOOKUP that's greater than the number of rows in the table_array parameter. Displays as error type #REF! in Excel.
|
|
20373
20593
|
*
|
|
@@ -20391,15 +20611,15 @@ declare namespace Excel {
|
|
|
20391
20611
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20392
20612
|
* @beta
|
|
20393
20613
|
*/
|
|
20394
|
-
|
|
20614
|
+
subArrayStartRowOutOfBounds = "SubArrayStartRowOutOfBounds",
|
|
20395
20615
|
/**
|
|
20396
|
-
* An error caused by a
|
|
20616
|
+
* An error caused by a start_column parameter of SUBARRAY being out of bounds. Displays as error type #REF! in Excel.
|
|
20397
20617
|
*
|
|
20398
20618
|
* @remarks
|
|
20399
20619
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20400
20620
|
* @beta
|
|
20401
20621
|
*/
|
|
20402
|
-
|
|
20622
|
+
subArrayStartColumnOutOfBounds = "SubArrayStartColumnOutOfBounds",
|
|
20403
20623
|
/**
|
|
20404
20624
|
* An error caused by an end_row parameter of SUBARRAY being out of bounds. Displays as error type #REF! in Excel.
|
|
20405
20625
|
*
|
|
@@ -20407,15 +20627,15 @@ declare namespace Excel {
|
|
|
20407
20627
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20408
20628
|
* @beta
|
|
20409
20629
|
*/
|
|
20410
|
-
|
|
20630
|
+
subArrayEndRowOutOfBounds = "SubArrayEndRowOutOfBounds",
|
|
20411
20631
|
/**
|
|
20412
|
-
* An error caused by an
|
|
20632
|
+
* An error caused by an end_column parameter of SUBARRAY being out of bounds. Displays as error type #REF! in Excel.
|
|
20413
20633
|
*
|
|
20414
20634
|
* @remarks
|
|
20415
20635
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20416
20636
|
* @beta
|
|
20417
20637
|
*/
|
|
20418
|
-
|
|
20638
|
+
subArrayEndColumnOutOfBounds = "SubArrayEndColumnOutOfBounds",
|
|
20419
20639
|
/**
|
|
20420
20640
|
* An error caused by an end_row parameter of SUBARRAY preceding the start_row parameter. Displays as error type #REF! in Excel.
|
|
20421
20641
|
*
|
|
@@ -20425,13 +20645,13 @@ declare namespace Excel {
|
|
|
20425
20645
|
*/
|
|
20426
20646
|
subArrayEndRowPrecedesStartRow = "SubArrayEndRowPrecedesStartRow",
|
|
20427
20647
|
/**
|
|
20428
|
-
* An error
|
|
20648
|
+
* An error caused by an end_column parameter of SUBARRAY preceding the start_column parameter. Displays as error type #REF! in Excel.
|
|
20429
20649
|
*
|
|
20430
20650
|
* @remarks
|
|
20431
20651
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20432
20652
|
* @beta
|
|
20433
20653
|
*/
|
|
20434
|
-
|
|
20654
|
+
subArrayEndColumnPrecedesStartColumn = "SubArrayEndColumnPrecedesStartColumn"
|
|
20435
20655
|
}
|
|
20436
20656
|
/**
|
|
20437
20657
|
* Represents the value of a cell containing a #REF! error.
|
|
@@ -20456,7 +20676,7 @@ declare namespace Excel {
|
|
|
20456
20676
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20457
20677
|
* @beta
|
|
20458
20678
|
*/
|
|
20459
|
-
|
|
20679
|
+
basicValue?: "#REF!";
|
|
20460
20680
|
/**
|
|
20461
20681
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20462
20682
|
*
|
|
@@ -20464,7 +20684,7 @@ declare namespace Excel {
|
|
|
20464
20684
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20465
20685
|
* @beta
|
|
20466
20686
|
*/
|
|
20467
|
-
|
|
20687
|
+
basicType?: RangeValueType.error | "Error";
|
|
20468
20688
|
/**
|
|
20469
20689
|
* Represents the type of `ErrorCellValue`.
|
|
20470
20690
|
*
|
|
@@ -20480,7 +20700,7 @@ declare namespace Excel {
|
|
|
20480
20700
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20481
20701
|
* @beta
|
|
20482
20702
|
*/
|
|
20483
|
-
errorSubType?: RefErrorCellValueSubType | "Unknown" | "
|
|
20703
|
+
errorSubType?: RefErrorCellValueSubType | "Unknown" | "VlookupColumnIndexGreaterThanNumColumns" | "HlookupRowIndexGreaterThanNumRows" | "ExternalLinksRefNotExist" | "SubArrayStartRowOutOfBounds" | "SubArrayStartColumnOutOfBounds" | "SubArrayEndRowOutOfBounds" | "SubArrayEndColumnOutOfBounds" | "SubArrayEndRowPrecedesStartRow" | "SubArrayEndColumnPrecedesStartColumn";
|
|
20484
20704
|
}
|
|
20485
20705
|
/**
|
|
20486
20706
|
* Represents types of #SPILL! errors.
|
|
@@ -20570,7 +20790,7 @@ declare namespace Excel {
|
|
|
20570
20790
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20571
20791
|
* @beta
|
|
20572
20792
|
*/
|
|
20573
|
-
|
|
20793
|
+
basicValue?: "#SPILL!";
|
|
20574
20794
|
/**
|
|
20575
20795
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20576
20796
|
*
|
|
@@ -20578,7 +20798,7 @@ declare namespace Excel {
|
|
|
20578
20798
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20579
20799
|
* @beta
|
|
20580
20800
|
*/
|
|
20581
|
-
|
|
20801
|
+
basicType?: RangeValueType.error | "Error";
|
|
20582
20802
|
/**
|
|
20583
20803
|
* Represents the type of `ErrorCellValue`.
|
|
20584
20804
|
*
|
|
@@ -20635,7 +20855,7 @@ declare namespace Excel {
|
|
|
20635
20855
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20636
20856
|
* @beta
|
|
20637
20857
|
*/
|
|
20638
|
-
|
|
20858
|
+
basicValue: string;
|
|
20639
20859
|
/**
|
|
20640
20860
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20641
20861
|
*
|
|
@@ -20643,7 +20863,7 @@ declare namespace Excel {
|
|
|
20643
20863
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20644
20864
|
* @beta
|
|
20645
20865
|
*/
|
|
20646
|
-
|
|
20866
|
+
basicType?: RangeValueType.string | "String";
|
|
20647
20867
|
}
|
|
20648
20868
|
/**
|
|
20649
20869
|
* Represents types of #VALUE! errors.
|
|
@@ -20662,13 +20882,13 @@ declare namespace Excel {
|
|
|
20662
20882
|
*/
|
|
20663
20883
|
unknown = "Unknown",
|
|
20664
20884
|
/**
|
|
20665
|
-
* An error caused by a
|
|
20885
|
+
* An error caused by a column_index_num parameter of VLOOKUP of less than 1. Displays as error type #VALUE! in Excel.
|
|
20666
20886
|
*
|
|
20667
20887
|
* @remarks
|
|
20668
20888
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20669
20889
|
* @beta
|
|
20670
20890
|
*/
|
|
20671
|
-
|
|
20891
|
+
vlookupColumnIndexLessThanOne = "VlookupColumnIndexLessThanOne",
|
|
20672
20892
|
/**
|
|
20673
20893
|
* An error caused by VLOOKUP not finding its lookup_value parameter. Displays as error type #VALUE! in Excel.
|
|
20674
20894
|
*
|
|
@@ -20732,7 +20952,7 @@ declare namespace Excel {
|
|
|
20732
20952
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20733
20953
|
* @beta
|
|
20734
20954
|
*/
|
|
20735
|
-
|
|
20955
|
+
subArrayStartColumnMissingEndColumnNot = "SubArrayStartColumnMissingEndColumnNot",
|
|
20736
20956
|
/**
|
|
20737
20957
|
* An error caused by a `WebImageValue` with an invalid URL. Displays as error type #VALUE! in Excel.
|
|
20738
20958
|
*
|
|
@@ -20837,7 +21057,7 @@ declare namespace Excel {
|
|
|
20837
21057
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20838
21058
|
* @beta
|
|
20839
21059
|
*/
|
|
20840
|
-
|
|
21060
|
+
basicValue?: "#VALUE!";
|
|
20841
21061
|
/**
|
|
20842
21062
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20843
21063
|
*
|
|
@@ -20845,7 +21065,7 @@ declare namespace Excel {
|
|
|
20845
21065
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20846
21066
|
* @beta
|
|
20847
21067
|
*/
|
|
20848
|
-
|
|
21068
|
+
basicType?: RangeValueType.error | "Error";
|
|
20849
21069
|
/**
|
|
20850
21070
|
* Represents the type of `ErrorCellValue`.
|
|
20851
21071
|
*
|
|
@@ -20861,7 +21081,7 @@ declare namespace Excel {
|
|
|
20861
21081
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20862
21082
|
* @beta
|
|
20863
21083
|
*/
|
|
20864
|
-
errorSubType?: ValueErrorCellValueSubType | "Unknown" | "
|
|
21084
|
+
errorSubType?: ValueErrorCellValueSubType | "Unknown" | "VlookupColumnIndexLessThanOne" | "VlookupResultNotFound" | "HlookupRowIndexLessThanOne" | "HlookupResultNotFound" | "CoerceStringToNumberInvalid" | "CoerceStringToBoolInvalid" | "CoerceStringToInvalidType" | "SubArrayStartRowMissingEndRowNot" | "SubArrayStartColumnMissingEndColumnNot" | "InvalidImageUrl" | "StockHistoryNonTradingDays" | "StockHistoryNotAStock" | "StockHistoryInvalidDate" | "StockHistoryEndBeforeStart" | "StockHistoryStartInFuture" | "StockHistoryInvalidEnum" | "StockHistoryOnlyDateRequested" | "StockHistoryNotFound" | "LambdaWrongParamCount";
|
|
20865
21085
|
}
|
|
20866
21086
|
/**
|
|
20867
21087
|
* Represents the value of a cell containing a type of value which cannot be serialized.
|
|
@@ -20887,7 +21107,7 @@ declare namespace Excel {
|
|
|
20887
21107
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20888
21108
|
* @beta
|
|
20889
21109
|
*/
|
|
20890
|
-
|
|
21110
|
+
basicValue: boolean | number | string;
|
|
20891
21111
|
/**
|
|
20892
21112
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20893
21113
|
*
|
|
@@ -20895,7 +21115,7 @@ declare namespace Excel {
|
|
|
20895
21115
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20896
21116
|
* @beta
|
|
20897
21117
|
*/
|
|
20898
|
-
|
|
21118
|
+
basicType: RangeValueType | "Boolean" | "Double" | "Error" | "Empty" | "String";
|
|
20899
21119
|
}
|
|
20900
21120
|
/**
|
|
20901
21121
|
* Represents the value of a cell containing an image downloaded from the internet.
|
|
@@ -20920,7 +21140,7 @@ declare namespace Excel {
|
|
|
20920
21140
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20921
21141
|
* @beta
|
|
20922
21142
|
*/
|
|
20923
|
-
|
|
21143
|
+
basicValue?: "#VALUE!";
|
|
20924
21144
|
/**
|
|
20925
21145
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20926
21146
|
*
|
|
@@ -20928,7 +21148,7 @@ declare namespace Excel {
|
|
|
20928
21148
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20929
21149
|
* @beta
|
|
20930
21150
|
*/
|
|
20931
|
-
|
|
21151
|
+
basicType?: RangeValueType.error | "Error";
|
|
20932
21152
|
/**
|
|
20933
21153
|
* Represents the URL from which the image will be downloaded.
|
|
20934
21154
|
* This image must be hosted on a server that supports HTTPS.
|
|
@@ -38097,7 +38317,7 @@ declare namespace Excel {
|
|
|
38097
38317
|
* Clears the column filter criteria of the AutoFilter.
|
|
38098
38318
|
*
|
|
38099
38319
|
* @remarks
|
|
38100
|
-
* [Api set:
|
|
38320
|
+
* [Api set: ExcelApi 1.14]
|
|
38101
38321
|
*
|
|
38102
38322
|
* @param columnIndex The zero-based column index, which represents which column filter needs to be cleared.
|
|
38103
38323
|
If the index value is not supported(for example, if the value is a negative number, or if the value is greater than the number of available columns in the range),
|
|
@@ -58063,7 +58283,9 @@ declare namespace Excel {
|
|
|
58063
58283
|
accessDenied = "AccessDenied",
|
|
58064
58284
|
apiNotFound = "ApiNotFound",
|
|
58065
58285
|
conflict = "Conflict",
|
|
58286
|
+
emptyChartSeries = "EmptyChartSeries",
|
|
58066
58287
|
filteredRangeConflict = "FilteredRangeConflict",
|
|
58288
|
+
formulaLengthExceedsLimit = "FormulaLengthExceedsLimit",
|
|
58067
58289
|
generalException = "GeneralException",
|
|
58068
58290
|
inactiveWorkbook = "InactiveWorkbook",
|
|
58069
58291
|
insertDeleteConflict = "InsertDeleteConflict",
|
office-js-preview/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js-preview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.264",
|
|
4
4
|
"description": "TypeScript definitions for Office.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,6 +40,6 @@
|
|
|
40
40
|
},
|
|
41
41
|
"scripts": {},
|
|
42
42
|
"dependencies": {},
|
|
43
|
-
"typesPublisherContentHash": "
|
|
43
|
+
"typesPublisherContentHash": "db69000376b59e920743659ca9b2e877648b18f9f5075cd78a9de34b48a200f0",
|
|
44
44
|
"typeScriptVersion": "3.7"
|
|
45
45
|
}
|