@types/office-js 1.0.359 → 1.0.361
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/README.md +1 -1
- office-js/index.d.ts +143 -143
- 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:
|
|
11
|
+
* Last updated: Mon, 20 Nov 2023 23:36:24 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -111,7 +111,7 @@ declare namespace Office {
|
|
|
111
111
|
* @param values An array of Promises.
|
|
112
112
|
* @returns A new Promise.
|
|
113
113
|
*/
|
|
114
|
-
all<T>(values:
|
|
114
|
+
all<T>(values: Array<T | PromiseLike<T>>): Promise<T[]>;
|
|
115
115
|
|
|
116
116
|
/**
|
|
117
117
|
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
|
|
@@ -191,7 +191,7 @@ declare namespace Office {
|
|
|
191
191
|
* @param values An array of Promises.
|
|
192
192
|
* @returns A new Promise.
|
|
193
193
|
*/
|
|
194
|
-
race<T>(values:
|
|
194
|
+
race<T>(values: Array<T | PromiseLike<T>>): Promise<T>;
|
|
195
195
|
|
|
196
196
|
/**
|
|
197
197
|
* Creates a new rejected promise for the provided reason.
|
|
@@ -572,7 +572,7 @@ declare namespace Office {
|
|
|
572
572
|
* @param shortcuts An array of shortcut combinations. For example, `["Ctrl+1", "Ctrl+2"]`.
|
|
573
573
|
* @returns A promise that resolves to an array of objects. Each object consists of a shortcut combination and Boolean value. The value is `true` if the shortcut combination conflicts with a shortcut of another add-in or with a shortcut of the Office application; otherwise, `false`. For example, `[{shortcut:"Ctrl+1", inUse:true},{shortcut:"Ctrl+2", inUse:false}]`.
|
|
574
574
|
*/
|
|
575
|
-
areShortcutsInUse(shortcuts: string[]): Promise<{shortcut: string, inUse: boolean}
|
|
575
|
+
areShortcutsInUse(shortcuts: string[]): Promise<Array<{shortcut: string, inUse: boolean}>>;
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
578
578
|
* Message used in the `onVisibilityModeChanged` invocation.
|
|
@@ -5905,7 +5905,7 @@ declare namespace Office {
|
|
|
5905
5905
|
* @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
|
|
5906
5906
|
* The `value` property of the result is an array containing one or more JavaScript objects specifying the formatting of their corresponding cells.
|
|
5907
5907
|
*/
|
|
5908
|
-
getFormatsAsync(cellReference?: any, formats?: any[], options?: Office.AsyncContextOptions, callback?: (result: AsyncResult<
|
|
5908
|
+
getFormatsAsync(cellReference?: any, formats?: any[], options?: Office.AsyncContextOptions, callback?: (result: AsyncResult< Array<{ cells: any, format: any}>>) => void): void;
|
|
5909
5909
|
/**
|
|
5910
5910
|
* Gets the formatting on specified items in the table.
|
|
5911
5911
|
*
|
|
@@ -5958,7 +5958,7 @@ declare namespace Office {
|
|
|
5958
5958
|
* @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
|
|
5959
5959
|
* The `value` property of the result is an array containing one or more JavaScript objects specifying the formatting of their corresponding cells.
|
|
5960
5960
|
*/
|
|
5961
|
-
getFormatsAsync(cellReference?: any, formats?: any[], callback?: (result: AsyncResult<
|
|
5961
|
+
getFormatsAsync(cellReference?: any, formats?: any[], callback?: (result: AsyncResult< Array<{ cells: any, format: any}>>) => void): void;
|
|
5962
5962
|
/**
|
|
5963
5963
|
* Sets formatting on specified items and data in the table.
|
|
5964
5964
|
*
|
|
@@ -11661,7 +11661,7 @@ declare namespace Office {
|
|
|
11661
11661
|
* </tr>
|
|
11662
11662
|
* </table>
|
|
11663
11663
|
*/
|
|
11664
|
-
getEntitiesByType(entityType: MailboxEnums.EntityType | string):
|
|
11664
|
+
getEntitiesByType(entityType: MailboxEnums.EntityType | string): Array<string | Contact | MeetingSuggestion | PhoneNumber | TaskSuggestion>;
|
|
11665
11665
|
/**
|
|
11666
11666
|
* Returns well-known entities in the selected item that pass the named filter defined in an XML manifest file.
|
|
11667
11667
|
*
|
|
@@ -11688,7 +11688,7 @@ declare namespace Office {
|
|
|
11688
11688
|
*
|
|
11689
11689
|
* @param name - The name of the `ItemHasKnownEntity` rule element that defines the filter to match.
|
|
11690
11690
|
*/
|
|
11691
|
-
getFilteredEntitiesByName(name: string):
|
|
11691
|
+
getFilteredEntitiesByName(name: string): Array<string | Contact | MeetingSuggestion | PhoneNumber | TaskSuggestion>;
|
|
11692
11692
|
/**
|
|
11693
11693
|
* Gets initialization data passed when the add-in is {@link https://learn.microsoft.com/outlook/actionable-messages/invoke-add-in | activated by an actionable message}.
|
|
11694
11694
|
*
|
|
@@ -17123,7 +17123,7 @@ declare namespace Office {
|
|
|
17123
17123
|
* </tr>
|
|
17124
17124
|
* </table>
|
|
17125
17125
|
*/
|
|
17126
|
-
getEntitiesByType(entityType: MailboxEnums.EntityType | string):
|
|
17126
|
+
getEntitiesByType(entityType: MailboxEnums.EntityType | string): Array<string | Contact | MeetingSuggestion | PhoneNumber | TaskSuggestion>;
|
|
17127
17127
|
/**
|
|
17128
17128
|
* Returns well-known entities in the selected item that pass the named filter defined in an XML manifest file.
|
|
17129
17129
|
*
|
|
@@ -17150,7 +17150,7 @@ declare namespace Office {
|
|
|
17150
17150
|
*
|
|
17151
17151
|
* @param name - The name of the `ItemHasKnownEntity` rule element that defines the filter to match.
|
|
17152
17152
|
*/
|
|
17153
|
-
getFilteredEntitiesByName(name: string):
|
|
17153
|
+
getFilteredEntitiesByName(name: string): Array<string | Contact | MeetingSuggestion | PhoneNumber | TaskSuggestion>;
|
|
17154
17154
|
/**
|
|
17155
17155
|
* Gets initialization data passed when the add-in is {@link https://learn.microsoft.com/outlook/actionable-messages/invoke-add-in | activated by an actionable message}.
|
|
17156
17156
|
*
|
|
@@ -17788,7 +17788,7 @@ declare namespace Office {
|
|
|
17788
17788
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
|
|
17789
17789
|
* of type `Office.AsyncResult`. If adding the recipients fails, the `asyncResult.error` property will contain an error code.
|
|
17790
17790
|
*/
|
|
17791
|
-
addAsync(recipients:
|
|
17791
|
+
addAsync(recipients: Array<string | EmailUser | EmailAddressDetails>, options: Office.AsyncContextOptions, callback?: (asyncResult: Office.AsyncResult<void>) => void): void;
|
|
17792
17792
|
/**
|
|
17793
17793
|
* Adds a recipient list to the existing recipients for an appointment or message.
|
|
17794
17794
|
*
|
|
@@ -17820,7 +17820,7 @@ declare namespace Office {
|
|
|
17820
17820
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
|
|
17821
17821
|
* of type `Office.AsyncResult`. If adding the recipients fails, the `asyncResult.error` property will contain an error code.
|
|
17822
17822
|
*/
|
|
17823
|
-
addAsync(recipients:
|
|
17823
|
+
addAsync(recipients: Array<string | EmailUser | EmailAddressDetails>, callback?: (asyncResult: Office.AsyncResult<void>) => void): void;
|
|
17824
17824
|
/**
|
|
17825
17825
|
* Gets a recipient list for an appointment or message.
|
|
17826
17826
|
*
|
|
@@ -17945,7 +17945,7 @@ declare namespace Office {
|
|
|
17945
17945
|
* type `Office.AsyncResult`. If setting the recipients fails the `asyncResult.error` property will contain a code that
|
|
17946
17946
|
* indicates any error that occurred while adding the data.
|
|
17947
17947
|
*/
|
|
17948
|
-
setAsync(recipients:
|
|
17948
|
+
setAsync(recipients: Array<string | EmailUser | EmailAddressDetails>, options: Office.AsyncContextOptions, callback: (asyncResult: Office.AsyncResult<void>) => void): void;
|
|
17949
17949
|
/**
|
|
17950
17950
|
* Sets a recipient list for an appointment or message.
|
|
17951
17951
|
*
|
|
@@ -17980,7 +17980,7 @@ declare namespace Office {
|
|
|
17980
17980
|
* type `Office.AsyncResult`. If setting the recipients fails the `asyncResult.error` property will contain a code that
|
|
17981
17981
|
* indicates any error that occurred while adding the data.
|
|
17982
17982
|
*/
|
|
17983
|
-
setAsync(recipients:
|
|
17983
|
+
setAsync(recipients: Array<string | EmailUser | EmailAddressDetails>, callback: (asyncResult: Office.AsyncResult<void>) => void): void;
|
|
17984
17984
|
}
|
|
17985
17985
|
/**
|
|
17986
17986
|
* Provides change status of recipients fields when the `Office.EventType.RecipientsChanged` event is raised.
|
|
@@ -24470,13 +24470,6 @@ declare namespace Excel {
|
|
|
24470
24470
|
*/
|
|
24471
24471
|
linkedEntity = "LinkedEntity",
|
|
24472
24472
|
/**
|
|
24473
|
-
* Represents a `LocalImageCellValue`.
|
|
24474
|
-
*
|
|
24475
|
-
* @remarks
|
|
24476
|
-
* [Api set: ExcelApi 1.16]
|
|
24477
|
-
*/
|
|
24478
|
-
localImage = "LocalImage",
|
|
24479
|
-
/**
|
|
24480
24473
|
* Represents a `ReferenceCellValue`.
|
|
24481
24474
|
*
|
|
24482
24475
|
* @remarks
|
|
@@ -25337,7 +25330,7 @@ declare namespace Excel {
|
|
|
25337
25330
|
* An error caused by a missing file. In this case, the RichValueRel.xml file is missing from the metro package. Displays as error type #FIELD! in Excel.
|
|
25338
25331
|
*
|
|
25339
25332
|
* @remarks
|
|
25340
|
-
* [Api set: 1.16]
|
|
25333
|
+
* [Api set: ExcelApi 1.16]
|
|
25341
25334
|
*/
|
|
25342
25335
|
richValueRelMissingFilePart = "RichValueRelMissingFilePart"
|
|
25343
25336
|
}
|
|
@@ -27152,7 +27145,7 @@ declare namespace Excel {
|
|
|
27152
27145
|
* [Api set: ExcelApiOnline 1.1]
|
|
27153
27146
|
*
|
|
27154
27147
|
* @param key The title of the `AllowEditRange`.
|
|
27155
|
-
* @returns The `AllowEditRange` with the title. If there is no `AllowEditRange` with the given title, then this method returns an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
27148
|
+
* @returns The `AllowEditRange` with the title. If there is no `AllowEditRange` with the given title, then this method returns an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
27156
27149
|
*/
|
|
27157
27150
|
getItemOrNullObject(key: string): Excel.AllowEditRange;
|
|
27158
27151
|
/**
|
|
@@ -27648,7 +27641,7 @@ declare namespace Excel {
|
|
|
27648
27641
|
getItem(key: string): Excel.LinkedWorkbook;
|
|
27649
27642
|
/**
|
|
27650
27643
|
* Gets information about a linked workbook by its URL. If the workbook does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
27651
|
-
For further information, see {@link https://
|
|
27644
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
27652
27645
|
*
|
|
27653
27646
|
* @remarks
|
|
27654
27647
|
* [Api set: ExcelApiOnline 1.1]
|
|
@@ -28283,7 +28276,7 @@ declare namespace Excel {
|
|
|
28283
28276
|
* @remarks
|
|
28284
28277
|
* [Api set: ExcelApi 1.12]
|
|
28285
28278
|
*/
|
|
28286
|
-
selectedItems?:
|
|
28279
|
+
selectedItems?: Array<string | PivotItem>;
|
|
28287
28280
|
}
|
|
28288
28281
|
/**
|
|
28289
28282
|
* Configurable template for a value filter to apply to a PivotField.
|
|
@@ -28626,7 +28619,7 @@ declare namespace Excel {
|
|
|
28626
28619
|
interface ChangeDirectionState {
|
|
28627
28620
|
/**
|
|
28628
28621
|
* Represents the direction (such as up or to the left) that the remaining cells will shift when a cell or cells are deleted.
|
|
28629
|
-
Note
|
|
28622
|
+
Note: `insertShiftDirection` and `deleteShiftDirection` are exclusive and both enums can't have a value at the same time. If one has a value, then the other will return `undefined`.
|
|
28630
28623
|
*
|
|
28631
28624
|
* @remarks
|
|
28632
28625
|
* [Api set: ExcelApi 1.14]
|
|
@@ -28634,7 +28627,7 @@ declare namespace Excel {
|
|
|
28634
28627
|
deleteShiftDirection: Excel.DeleteShiftDirection | "Up" | "Left";
|
|
28635
28628
|
/**
|
|
28636
28629
|
* Represents the direction (such as down or to the right) that the existing cells will shift when a new cell or cells are inserted.
|
|
28637
|
-
Note
|
|
28630
|
+
Note: `insertShiftDirection` and `deleteShiftDirection` are exclusive and both enums can't have a value at the same time. If one has a value, then the other will return `undefined`.
|
|
28638
28631
|
*
|
|
28639
28632
|
* @remarks
|
|
28640
28633
|
* [Api set: ExcelApi 1.14]
|
|
@@ -30030,7 +30023,7 @@ declare namespace Excel {
|
|
|
30030
30023
|
}
|
|
30031
30024
|
/**
|
|
30032
30025
|
* Workbook is the top level object which contains related workbook objects such as worksheets, tables, and ranges.
|
|
30033
|
-
To learn more about the workbook object model, read {@link https://
|
|
30026
|
+
To learn more about the workbook object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-workbooks | Work with workbooks using the Excel JavaScript API}.
|
|
30034
30027
|
*
|
|
30035
30028
|
* @remarks
|
|
30036
30029
|
* [Api set: ExcelApi 1.1]
|
|
@@ -30286,7 +30279,7 @@ declare namespace Excel {
|
|
|
30286
30279
|
getActiveChart(): Excel.Chart;
|
|
30287
30280
|
/**
|
|
30288
30281
|
* Gets the currently active chart in the workbook. If there is no active chart, then this method returns an object with its `isNullObject` property set to `true`.
|
|
30289
|
-
For further information, see {@link https://
|
|
30282
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
30290
30283
|
*
|
|
30291
30284
|
* @remarks
|
|
30292
30285
|
* [Api set: ExcelApi 1.9]
|
|
@@ -30301,7 +30294,7 @@ declare namespace Excel {
|
|
|
30301
30294
|
getActiveSlicer(): Excel.Slicer;
|
|
30302
30295
|
/**
|
|
30303
30296
|
* Gets the currently active slicer in the workbook. If there is no active slicer, then this method returns an object with its `isNullObject` property set to `true`.
|
|
30304
|
-
For further information, see {@link https://
|
|
30297
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
30305
30298
|
*
|
|
30306
30299
|
* @remarks
|
|
30307
30300
|
* [Api set: ExcelApi 1.10]
|
|
@@ -30357,7 +30350,7 @@ declare namespace Excel {
|
|
|
30357
30350
|
* @remarks
|
|
30358
30351
|
* [Api set: ExcelApi 1.11]
|
|
30359
30352
|
*
|
|
30360
|
-
* @param saveBehavior
|
|
30353
|
+
* @param saveBehavior The save behavior must be "Save" or "Prompt". Default value is "Save".
|
|
30361
30354
|
*/
|
|
30362
30355
|
save(saveBehavior?: Excel.SaveBehavior): void;
|
|
30363
30356
|
/**
|
|
@@ -30366,7 +30359,7 @@ declare namespace Excel {
|
|
|
30366
30359
|
* @remarks
|
|
30367
30360
|
* [Api set: ExcelApi 1.11]
|
|
30368
30361
|
*
|
|
30369
|
-
* @param saveBehavior
|
|
30362
|
+
* @param saveBehavior The save behavior must be "Save" or "Prompt". Default value is "Save".
|
|
30370
30363
|
*/
|
|
30371
30364
|
save(saveBehavior?: "Save" | "Prompt"): void;
|
|
30372
30365
|
/**
|
|
@@ -30516,7 +30509,7 @@ declare namespace Excel {
|
|
|
30516
30509
|
}
|
|
30517
30510
|
/**
|
|
30518
30511
|
* An Excel worksheet is a grid of cells. It can contain data, tables, charts, etc.
|
|
30519
|
-
To learn more about the worksheet object model, read {@link https://
|
|
30512
|
+
To learn more about the worksheet object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-worksheets | Work with worksheets using the Excel JavaScript API}.
|
|
30520
30513
|
*
|
|
30521
30514
|
* @remarks
|
|
30522
30515
|
* [Api set: ExcelApi 1.1]
|
|
@@ -30783,7 +30776,7 @@ declare namespace Excel {
|
|
|
30783
30776
|
* @param text The string to find.
|
|
30784
30777
|
* @param criteria Additional search criteria, including whether the search needs to match the entire cell or be case-sensitive.
|
|
30785
30778
|
* @returns A `RangeAreas` object, comprising one or more rectangular ranges, that matches the search criteria. If there are no matches, then this method returns an object with its `isNullObject` property set to `true`.
|
|
30786
|
-
For further information, see {@link https://
|
|
30779
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
30787
30780
|
*/
|
|
30788
30781
|
findAllOrNullObject(text: string, criteria: Excel.WorksheetSearchCriteria): Excel.RangeAreas;
|
|
30789
30782
|
/**
|
|
@@ -30807,7 +30800,7 @@ declare namespace Excel {
|
|
|
30807
30800
|
getNext(visibleOnly?: boolean): Excel.Worksheet;
|
|
30808
30801
|
/**
|
|
30809
30802
|
* Gets the worksheet that follows this one. If there are no worksheets following this one, then this method returns an object with its `isNullObject` property set to `true`.
|
|
30810
|
-
For further information, see {@link https://
|
|
30803
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
30811
30804
|
*
|
|
30812
30805
|
* @remarks
|
|
30813
30806
|
* [Api set: ExcelApi 1.5]
|
|
@@ -30826,7 +30819,7 @@ declare namespace Excel {
|
|
|
30826
30819
|
getPrevious(visibleOnly?: boolean): Excel.Worksheet;
|
|
30827
30820
|
/**
|
|
30828
30821
|
* Gets the worksheet that precedes this one. If there are no previous worksheets, then this method returns an object with its `isNullObject` property set to `true`.
|
|
30829
|
-
For further information, see {@link https://
|
|
30822
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
30830
30823
|
*
|
|
30831
30824
|
* @remarks
|
|
30832
30825
|
* [Api set: ExcelApi 1.5]
|
|
@@ -30874,7 +30867,7 @@ declare namespace Excel {
|
|
|
30874
30867
|
*/
|
|
30875
30868
|
getUsedRange(valuesOnly?: boolean): Excel.Range;
|
|
30876
30869
|
/**
|
|
30877
|
-
* The used range is the smallest range that encompasses any cells that have a value or formatting assigned to them. If the entire worksheet is blank, then this method returns an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
30870
|
+
* The used range is the smallest range that encompasses any cells that have a value or formatting assigned to them. If the entire worksheet is blank, then this method returns an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
30878
30871
|
*
|
|
30879
30872
|
* @remarks
|
|
30880
30873
|
* [Api set: ExcelApi 1.4]
|
|
@@ -31121,7 +31114,7 @@ declare namespace Excel {
|
|
|
31121
31114
|
getItem(key: string): Excel.Worksheet;
|
|
31122
31115
|
/**
|
|
31123
31116
|
* Gets a worksheet object using its name or ID. If the worksheet does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
31124
|
-
For further information, see {@link https://
|
|
31117
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
31125
31118
|
*
|
|
31126
31119
|
* @remarks
|
|
31127
31120
|
* [Api set: ExcelApi 1.4]
|
|
@@ -31380,7 +31373,7 @@ declare namespace Excel {
|
|
|
31380
31373
|
/**
|
|
31381
31374
|
* Specifies if the password can be used to unlock worksheet protection.
|
|
31382
31375
|
This method doesn't change the worksheet protection state.
|
|
31383
|
-
If a password is
|
|
31376
|
+
If a password is entered but no password is required to unlock worksheet protection, this method will return false.
|
|
31384
31377
|
*
|
|
31385
31378
|
* @remarks
|
|
31386
31379
|
* [Api set: ExcelApiOnline 1.1]
|
|
@@ -31632,7 +31625,7 @@ declare namespace Excel {
|
|
|
31632
31625
|
* Gets a range that describes the frozen cells in the active worksheet view.
|
|
31633
31626
|
The frozen range corresponds to cells that are frozen in the top- and left-most pane.
|
|
31634
31627
|
If there is no frozen pane, then this method returns an object with its `isNullObject` property set to `true`.
|
|
31635
|
-
For further information, see {@link https://
|
|
31628
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
31636
31629
|
*
|
|
31637
31630
|
* @remarks
|
|
31638
31631
|
* [Api set: ExcelApi 1.7]
|
|
@@ -31684,7 +31677,7 @@ declare namespace Excel {
|
|
|
31684
31677
|
}
|
|
31685
31678
|
/**
|
|
31686
31679
|
* Range represents a set of one or more contiguous cells such as a cell, a row, a column, or a block of cells.
|
|
31687
|
-
To learn more about how ranges are used throughout the API, start with {@link https://
|
|
31680
|
+
To learn more about how ranges are used throughout the API, start with {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-core-concepts#ranges | Ranges in the Excel JavaScript API}.
|
|
31688
31681
|
*
|
|
31689
31682
|
* @remarks
|
|
31690
31683
|
* [Api set: ExcelApi 1.1]
|
|
@@ -31982,7 +31975,7 @@ declare namespace Excel {
|
|
|
31982
31975
|
* @remarks
|
|
31983
31976
|
* [Api set: ExcelApi 1.9, ExcelApi Preview for null `destinationRange`]
|
|
31984
31977
|
*
|
|
31985
|
-
* @param destinationRange The destination range to AutoFill. If the destination range is `null`, data is filled out based on the surrounding cells (which is the behavior when double-clicking the UI
|
|
31978
|
+
* @param destinationRange The destination range to AutoFill. If the destination range is `null`, data is filled out based on the surrounding cells (which is the behavior when double-clicking the UI's range fill handle).
|
|
31986
31979
|
* @param autoFillType The type of AutoFill. Specifies how the destination range is to be filled, based on the contents of the current range. Default is "FillDefault".
|
|
31987
31980
|
*/
|
|
31988
31981
|
autoFill(destinationRange?: Range | string, autoFillType?: Excel.AutoFillType): void;
|
|
@@ -31996,7 +31989,7 @@ declare namespace Excel {
|
|
|
31996
31989
|
* @remarks
|
|
31997
31990
|
* [Api set: ExcelApi 1.9, ExcelApi Preview for null `destinationRange`]
|
|
31998
31991
|
*
|
|
31999
|
-
* @param destinationRange The destination range to AutoFill. If the destination range is `null`, data is filled out based on the surrounding cells (which is the behavior when double-clicking the UI
|
|
31992
|
+
* @param destinationRange The destination range to AutoFill. If the destination range is `null`, data is filled out based on the surrounding cells (which is the behavior when double-clicking the UI's range fill handle).
|
|
32000
31993
|
* @param autoFillType The type of AutoFill. Specifies how the destination range is to be filled, based on the contents of the current range. Default is "FillDefault".
|
|
32001
31994
|
*/
|
|
32002
31995
|
autoFill(destinationRange?: Range | string, autoFillType?: "FillDefault" | "FillCopy" | "FillSeries" | "FillFormats" | "FillValues" | "FillDays" | "FillWeekdays" | "FillMonths" | "FillYears" | "LinearTrend" | "GrowthTrend" | "FlashFill"): void;
|
|
@@ -32102,7 +32095,7 @@ declare namespace Excel {
|
|
|
32102
32095
|
* Finds the given string based on the criteria specified.
|
|
32103
32096
|
If the current range is larger than a single cell, then the search will be limited to that range, else the search will cover the entire sheet starting after that cell.
|
|
32104
32097
|
If there are no matches, then this method returns an object with its `isNullObject` property set to `true`.
|
|
32105
|
-
For further information, see {@link https://
|
|
32098
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
32106
32099
|
*
|
|
32107
32100
|
* @remarks
|
|
32108
32101
|
* [Api set: ExcelApi 1.9]
|
|
@@ -32269,7 +32262,7 @@ declare namespace Excel {
|
|
|
32269
32262
|
getIntersection(anotherRange: Range | string): Excel.Range;
|
|
32270
32263
|
/**
|
|
32271
32264
|
* Gets the range object that represents the rectangular intersection of the given ranges. If no intersection is found, then this method returns an object with its `isNullObject` property set to `true`.
|
|
32272
|
-
For further information, see {@link https://
|
|
32265
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
32273
32266
|
*
|
|
32274
32267
|
* @remarks
|
|
32275
32268
|
* [Api set: ExcelApi 1.4]
|
|
@@ -32300,7 +32293,7 @@ declare namespace Excel {
|
|
|
32300
32293
|
getLastRow(): Excel.Range;
|
|
32301
32294
|
/**
|
|
32302
32295
|
* Returns a `RangeAreas` object that represents the merged areas in this range. Note that if the merged areas count in this range is more than 512, then this method will fail to return the result. If the `RangeAreas` object doesn't exist, then this function will return an object with its `isNullObject` property set to `true`.
|
|
32303
|
-
For further information, see {@link https://
|
|
32296
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
32304
32297
|
*
|
|
32305
32298
|
* @remarks
|
|
32306
32299
|
* [Api set: ExcelApi 1.13]
|
|
@@ -32425,7 +32418,7 @@ declare namespace Excel {
|
|
|
32425
32418
|
/**
|
|
32426
32419
|
* Gets the `RangeAreas` object, comprising one or more ranges, that represents all the cells that match the specified type and value.
|
|
32427
32420
|
If no special cells are found, then this method returns an object with its `isNullObject` property set to `true`.
|
|
32428
|
-
For further information, see {@link https://
|
|
32421
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
32429
32422
|
*
|
|
32430
32423
|
* @remarks
|
|
32431
32424
|
* [Api set: ExcelApi 1.9]
|
|
@@ -32437,7 +32430,7 @@ declare namespace Excel {
|
|
|
32437
32430
|
/**
|
|
32438
32431
|
* Gets the `RangeAreas` object, comprising one or more ranges, that represents all the cells that match the specified type and value.
|
|
32439
32432
|
If no special cells are found, then this method returns an object with its `isNullObject` property set to `true`.
|
|
32440
|
-
For further information, see {@link https://
|
|
32433
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
32441
32434
|
*
|
|
32442
32435
|
* @remarks
|
|
32443
32436
|
* [Api set: ExcelApi 1.9]
|
|
@@ -32456,7 +32449,7 @@ declare namespace Excel {
|
|
|
32456
32449
|
/**
|
|
32457
32450
|
* Gets the range object containing the anchor cell for the cell getting spilled into.
|
|
32458
32451
|
If it's not a spilled cell, or more than one cell is given, then this method returns an object with its `isNullObject` property set to `true`.
|
|
32459
|
-
For further information, see {@link https://
|
|
32452
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
32460
32453
|
*
|
|
32461
32454
|
* @remarks
|
|
32462
32455
|
* [Api set: ExcelApi 1.12]
|
|
@@ -32472,7 +32465,7 @@ declare namespace Excel {
|
|
|
32472
32465
|
/**
|
|
32473
32466
|
* Gets the range object containing the spill range when called on an anchor cell.
|
|
32474
32467
|
If the range isn't an anchor cell or the spill range can't be found, then this method returns an object with its `isNullObject` property set to `true`.
|
|
32475
|
-
For further information, see {@link https://
|
|
32468
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
32476
32469
|
*
|
|
32477
32470
|
* @remarks
|
|
32478
32471
|
* [Api set: ExcelApi 1.12]
|
|
@@ -32505,7 +32498,7 @@ declare namespace Excel {
|
|
|
32505
32498
|
getUsedRange(valuesOnly?: boolean): Excel.Range;
|
|
32506
32499
|
/**
|
|
32507
32500
|
* Returns the used range of the given range object. If there are no used cells within the range, then this method returns an object with its `isNullObject` property set to `true`.
|
|
32508
|
-
For further information, see {@link https://
|
|
32501
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
32509
32502
|
*
|
|
32510
32503
|
* @remarks
|
|
32511
32504
|
* [Api set: ExcelApi 1.4]
|
|
@@ -32801,7 +32794,7 @@ declare namespace Excel {
|
|
|
32801
32794
|
}
|
|
32802
32795
|
/**
|
|
32803
32796
|
* `RangeAreas` represents a collection of one or more rectangular ranges in the same worksheet.
|
|
32804
|
-
To learn how to use discontiguous ranges, read {@link https://
|
|
32797
|
+
To learn how to use discontiguous ranges, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-multiple-ranges | Work with multiple ranges simultaneously in Excel add-ins}.
|
|
32805
32798
|
*
|
|
32806
32799
|
* @remarks
|
|
32807
32800
|
* [Api set: ExcelApi 1.9]
|
|
@@ -32996,7 +32989,7 @@ declare namespace Excel {
|
|
|
32996
32989
|
getIntersection(anotherRange: Range | RangeAreas | string): Excel.RangeAreas;
|
|
32997
32990
|
/**
|
|
32998
32991
|
* Returns the `RangeAreas` object that represents the intersection of the given ranges or `RangeAreas`. If no intersection is found, then this method returns an object with its `isNullObject` property set to `true`.
|
|
32999
|
-
For further information, see {@link https://
|
|
32992
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
33000
32993
|
*
|
|
33001
32994
|
* @remarks
|
|
33002
32995
|
* [Api set: ExcelApi 1.9]
|
|
@@ -33036,7 +33029,7 @@ declare namespace Excel {
|
|
|
33036
33029
|
getSpecialCells(cellType: "ConditionalFormats" | "DataValidations" | "Blanks" | "Constants" | "Formulas" | "SameConditionalFormat" | "SameDataValidation" | "Visible", cellValueType?: "All" | "Errors" | "ErrorsLogical" | "ErrorsNumbers" | "ErrorsText" | "ErrorsLogicalNumber" | "ErrorsLogicalText" | "ErrorsNumberText" | "Logical" | "LogicalNumbers" | "LogicalText" | "LogicalNumbersText" | "Numbers" | "NumbersText" | "Text"): Excel.RangeAreas;
|
|
33037
33030
|
/**
|
|
33038
33031
|
* Returns a `RangeAreas` object that represents all the cells that match the specified type and value. If no special cells are found that match the criteria, then this method returns an object with its `isNullObject` property set to `true`.
|
|
33039
|
-
For further information, see {@link https://
|
|
33032
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
33040
33033
|
*
|
|
33041
33034
|
* @remarks
|
|
33042
33035
|
* [Api set: ExcelApi 1.9]
|
|
@@ -33047,7 +33040,7 @@ declare namespace Excel {
|
|
|
33047
33040
|
getSpecialCellsOrNullObject(cellType: Excel.SpecialCellType, cellValueType?: Excel.SpecialCellValueType): Excel.RangeAreas;
|
|
33048
33041
|
/**
|
|
33049
33042
|
* Returns a `RangeAreas` object that represents all the cells that match the specified type and value. If no special cells are found that match the criteria, then this method returns an object with its `isNullObject` property set to `true`.
|
|
33050
|
-
For further information, see {@link https://
|
|
33043
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
33051
33044
|
*
|
|
33052
33045
|
* @remarks
|
|
33053
33046
|
* [Api set: ExcelApi 1.9]
|
|
@@ -33078,7 +33071,7 @@ declare namespace Excel {
|
|
|
33078
33071
|
/**
|
|
33079
33072
|
* Returns the used `RangeAreas` that comprises all the used areas of individual rectangular ranges in the `RangeAreas` object.
|
|
33080
33073
|
If there are no used cells within the `RangeAreas`, then this method returns an object with its `isNullObject` property set to `true`.
|
|
33081
|
-
For further information, see {@link https://
|
|
33074
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
33082
33075
|
*
|
|
33083
33076
|
* @remarks
|
|
33084
33077
|
* [Api set: ExcelApi 1.9]
|
|
@@ -33169,7 +33162,7 @@ declare namespace Excel {
|
|
|
33169
33162
|
getRangeAreasBySheet(key: string): Excel.RangeAreas;
|
|
33170
33163
|
/**
|
|
33171
33164
|
* Returns the `RangeAreas` object based on worksheet name or ID in the collection. If the worksheet does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
33172
|
-
For further information, see {@link https://
|
|
33165
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
33173
33166
|
*
|
|
33174
33167
|
* @remarks
|
|
33175
33168
|
* [Api set: ExcelApi 1.12]
|
|
@@ -33915,7 +33908,7 @@ declare namespace Excel {
|
|
|
33915
33908
|
* @param key The key of the new setting.
|
|
33916
33909
|
* @param value The value for the new setting.
|
|
33917
33910
|
*/
|
|
33918
|
-
add(key: string, value: string | number | boolean | Date |
|
|
33911
|
+
add(key: string, value: string | number | boolean | Date | any[] | any): Excel.Setting;
|
|
33919
33912
|
/**
|
|
33920
33913
|
* Gets the number of settings in the collection.
|
|
33921
33914
|
*
|
|
@@ -33934,7 +33927,7 @@ declare namespace Excel {
|
|
|
33934
33927
|
getItem(key: string): Excel.Setting;
|
|
33935
33928
|
/**
|
|
33936
33929
|
* Gets a setting entry via the key. If the setting does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
33937
|
-
For further information, see {@link https://
|
|
33930
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
33938
33931
|
*
|
|
33939
33932
|
* @remarks
|
|
33940
33933
|
* [Api set: ExcelApi 1.4]
|
|
@@ -34093,7 +34086,7 @@ declare namespace Excel {
|
|
|
34093
34086
|
getItem(name: string): Excel.NamedItem;
|
|
34094
34087
|
/**
|
|
34095
34088
|
* Gets a `NamedItem` object using its name. If the object does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
34096
|
-
For further information, see {@link https://
|
|
34089
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
34097
34090
|
*
|
|
34098
34091
|
* @remarks
|
|
34099
34092
|
* [Api set: ExcelApi 1.4]
|
|
@@ -34150,7 +34143,7 @@ declare namespace Excel {
|
|
|
34150
34143
|
readonly worksheet: Excel.Worksheet;
|
|
34151
34144
|
/**
|
|
34152
34145
|
* Returns the worksheet to which the named item is scoped. If the item is scoped to the workbook instead, then this method returns an object with its `isNullObject` property set to `true`.
|
|
34153
|
-
For further information, see {@link https://
|
|
34146
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
34154
34147
|
*
|
|
34155
34148
|
* @remarks
|
|
34156
34149
|
* [Api set: ExcelApi 1.4]
|
|
@@ -34192,8 +34185,8 @@ declare namespace Excel {
|
|
|
34192
34185
|
*/
|
|
34193
34186
|
readonly type: Excel.NamedItemType | "String" | "Integer" | "Double" | "Boolean" | "Range" | "Error" | "Array";
|
|
34194
34187
|
/**
|
|
34195
|
-
* Represents the value computed by the name's formula. For a named range it will return the range address.
|
|
34196
|
-
|
|
34188
|
+
* Represents the value computed by the name's formula. For a named range, it will return the range address.
|
|
34189
|
+
This API returns the #VALUE! error in the Excel UI if it refers to a user-defined function.
|
|
34197
34190
|
*
|
|
34198
34191
|
* @remarks
|
|
34199
34192
|
* [Api set: ExcelApi 1.1]
|
|
@@ -34248,7 +34241,7 @@ declare namespace Excel {
|
|
|
34248
34241
|
getRange(): Excel.Range;
|
|
34249
34242
|
/**
|
|
34250
34243
|
* Returns the range object that is associated with the name. If the named item's type is not a range, then this method returns an object with its `isNullObject` property set to `true`.
|
|
34251
|
-
For further information, see {@link https://
|
|
34244
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
34252
34245
|
*
|
|
34253
34246
|
* @remarks
|
|
34254
34247
|
* [Api set: ExcelApi 1.4]
|
|
@@ -34560,7 +34553,7 @@ declare namespace Excel {
|
|
|
34560
34553
|
getItemAt(index: number): Excel.Binding;
|
|
34561
34554
|
/**
|
|
34562
34555
|
* Gets a binding object by ID. If the binding object does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
34563
|
-
For further information, see {@link https://
|
|
34556
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
34564
34557
|
*
|
|
34565
34558
|
* @remarks
|
|
34566
34559
|
* [Api set: ExcelApi 1.4]
|
|
@@ -34647,7 +34640,7 @@ declare namespace Excel {
|
|
|
34647
34640
|
getItemAt(index: number): Excel.Table;
|
|
34648
34641
|
/**
|
|
34649
34642
|
* Gets a table by name or ID. If the table doesn't exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
34650
|
-
For further information, see {@link https://
|
|
34643
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
34651
34644
|
*
|
|
34652
34645
|
* @remarks
|
|
34653
34646
|
* [Api set: ExcelApi 1.4]
|
|
@@ -34743,7 +34736,7 @@ declare namespace Excel {
|
|
|
34743
34736
|
/**
|
|
34744
34737
|
* Gets a table by name or ID.
|
|
34745
34738
|
If the table object does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
34746
|
-
For further information, see {@link https://
|
|
34739
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
34747
34740
|
*
|
|
34748
34741
|
* @remarks
|
|
34749
34742
|
* [Api set: ExcelApi 1.14]
|
|
@@ -34777,7 +34770,7 @@ declare namespace Excel {
|
|
|
34777
34770
|
}
|
|
34778
34771
|
/**
|
|
34779
34772
|
* Represents an Excel table.
|
|
34780
|
-
To learn more about the table object model, read {@link https://
|
|
34773
|
+
To learn more about the table object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-tables | Work with tables using the Excel JavaScript API}.
|
|
34781
34774
|
*
|
|
34782
34775
|
* @remarks
|
|
34783
34776
|
* [Api set: ExcelApi 1.1]
|
|
@@ -35085,7 +35078,7 @@ declare namespace Excel {
|
|
|
35085
35078
|
getItemAt(index: number): Excel.TableColumn;
|
|
35086
35079
|
/**
|
|
35087
35080
|
* Gets a column object by name or ID. If the column doesn't exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
35088
|
-
For further information, see {@link https://
|
|
35081
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
35089
35082
|
*
|
|
35090
35083
|
* @remarks
|
|
35091
35084
|
* [Api set: ExcelApi 1.4]
|
|
@@ -35471,7 +35464,7 @@ declare namespace Excel {
|
|
|
35471
35464
|
}
|
|
35472
35465
|
/**
|
|
35473
35466
|
* Represents the data validation applied to the current range.
|
|
35474
|
-
To learn more about the data validation object model, read {@link https://
|
|
35467
|
+
To learn more about the data validation object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-data-validation | Add data validation to Excel ranges}.
|
|
35475
35468
|
*
|
|
35476
35469
|
* @remarks
|
|
35477
35470
|
* [Api set: ExcelApi 1.8]
|
|
@@ -35901,7 +35894,7 @@ declare namespace Excel {
|
|
|
35901
35894
|
*/
|
|
35902
35895
|
autoIndent: boolean;
|
|
35903
35896
|
/**
|
|
35904
|
-
* Specifies the width of all
|
|
35897
|
+
* Specifies the width of all columns within the range. If the column widths are not uniform, `null` will be returned.
|
|
35905
35898
|
*
|
|
35906
35899
|
* @remarks
|
|
35907
35900
|
* [Api set: ExcelApi 1.2]
|
|
@@ -36539,7 +36532,7 @@ declare namespace Excel {
|
|
|
36539
36532
|
getItemAt(index: number): Excel.Chart;
|
|
36540
36533
|
/**
|
|
36541
36534
|
* Gets a chart using its name. If there are multiple charts with the same name, the first one will be returned. If the chart doesn't exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
36542
|
-
For further information, see {@link https://
|
|
36535
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
36543
36536
|
*
|
|
36544
36537
|
* @remarks
|
|
36545
36538
|
* [Api set: ExcelApi 1.4]
|
|
@@ -36609,7 +36602,7 @@ declare namespace Excel {
|
|
|
36609
36602
|
}
|
|
36610
36603
|
/**
|
|
36611
36604
|
* Represents a chart object in a workbook.
|
|
36612
|
-
To learn more about the chart object model, see {@link https://
|
|
36605
|
+
To learn more about the chart object model, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-charts | Work with charts using the Excel JavaScript API}.
|
|
36613
36606
|
*
|
|
36614
36607
|
* @remarks
|
|
36615
36608
|
* [Api set: ExcelApi 1.1]
|
|
@@ -36818,7 +36811,7 @@ declare namespace Excel {
|
|
|
36818
36811
|
getDataTable(): Excel.ChartDataTable;
|
|
36819
36812
|
/**
|
|
36820
36813
|
* Gets the data table on the chart. If the chart doesn't allow a data table, then this method returns an object with its `isNullObject` property set to `true`.
|
|
36821
|
-
For further information, see {@link https://
|
|
36814
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
36822
36815
|
*
|
|
36823
36816
|
* @remarks
|
|
36824
36817
|
* [Api set: ExcelApi 1.14]
|
|
@@ -37563,7 +37556,7 @@ declare namespace Excel {
|
|
|
37563
37556
|
*/
|
|
37564
37557
|
setValues(sourceData: Range): void;
|
|
37565
37558
|
/**
|
|
37566
|
-
* Sets the values of the x-axis for a chart series.
|
|
37559
|
+
* Sets the values of the x-axis for a chart series.
|
|
37567
37560
|
*
|
|
37568
37561
|
* @remarks
|
|
37569
37562
|
* [Api set: ExcelApi 1.7]
|
|
@@ -38397,7 +38390,7 @@ declare namespace Excel {
|
|
|
38397
38390
|
*/
|
|
38398
38391
|
textOrientation: number;
|
|
38399
38392
|
/**
|
|
38400
|
-
* Specifies if the axis title is
|
|
38393
|
+
* Specifies if the axis title is visible.
|
|
38401
38394
|
*
|
|
38402
38395
|
* @remarks
|
|
38403
38396
|
* [Api set: ExcelApi 1.1]
|
|
@@ -39779,7 +39772,7 @@ declare namespace Excel {
|
|
|
39779
39772
|
*/
|
|
39780
39773
|
verticalAlignment: Excel.ChartTextVerticalAlignment | "Center" | "Bottom" | "Top" | "Justify" | "Distributed";
|
|
39781
39774
|
/**
|
|
39782
|
-
* Specifies if the chart title is
|
|
39775
|
+
* Specifies if the chart title is visible.
|
|
39783
39776
|
*
|
|
39784
39777
|
* @remarks
|
|
39785
39778
|
* [Api set: ExcelApi 1.1]
|
|
@@ -41556,7 +41549,7 @@ declare namespace Excel {
|
|
|
41556
41549
|
/**
|
|
41557
41550
|
* Returns the `Range` object that represents the range to which the AutoFilter applies.
|
|
41558
41551
|
If there is no `Range` object associated with the AutoFilter, then this method returns an object with its `isNullObject` property set to `true`.
|
|
41559
|
-
For further information, see {@link https://
|
|
41552
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
41560
41553
|
*
|
|
41561
41554
|
* @remarks
|
|
41562
41555
|
* [Api set: ExcelApi 1.9]
|
|
@@ -41842,7 +41835,7 @@ declare namespace Excel {
|
|
|
41842
41835
|
/**
|
|
41843
41836
|
* Gets a custom XML part based on its ID.
|
|
41844
41837
|
If the `CustomXmlPart` does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
41845
|
-
For further information, see {@link https://
|
|
41838
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
41846
41839
|
*
|
|
41847
41840
|
* @remarks
|
|
41848
41841
|
* [Api set: ExcelApi 1.5]
|
|
@@ -41938,7 +41931,7 @@ declare namespace Excel {
|
|
|
41938
41931
|
/**
|
|
41939
41932
|
* Gets a custom XML part based on its ID.
|
|
41940
41933
|
If the `CustomXmlPart` does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
41941
|
-
For further information, see {@link https://
|
|
41934
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
41942
41935
|
*
|
|
41943
41936
|
* @remarks
|
|
41944
41937
|
* [Api set: ExcelApi 1.5]
|
|
@@ -42071,7 +42064,7 @@ declare namespace Excel {
|
|
|
42071
42064
|
/**
|
|
42072
42065
|
* Gets the first PivotTable in the collection. The PivotTables in the collection are sorted top-to-bottom and left-to-right, such that the top-left table is the first PivotTable in the collection.
|
|
42073
42066
|
If the collection is empty, then this method returns an object with its `isNullObject` property set to `true`.
|
|
42074
|
-
For further information, see {@link https://
|
|
42067
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
42075
42068
|
*
|
|
42076
42069
|
* @remarks
|
|
42077
42070
|
* [Api set: ExcelApi 1.15]
|
|
@@ -42088,7 +42081,7 @@ declare namespace Excel {
|
|
|
42088
42081
|
getItem(key: string): Excel.PivotTable;
|
|
42089
42082
|
/**
|
|
42090
42083
|
* Gets a PivotTable by name. If the PivotTable does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
42091
|
-
For further information, see {@link https://
|
|
42084
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
42092
42085
|
*
|
|
42093
42086
|
* @remarks
|
|
42094
42087
|
* [Api set: ExcelApi 1.12]
|
|
@@ -42161,7 +42154,7 @@ declare namespace Excel {
|
|
|
42161
42154
|
getItem(name: string): Excel.PivotTable;
|
|
42162
42155
|
/**
|
|
42163
42156
|
* Gets a PivotTable by name. If the PivotTable does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
42164
|
-
For further information, see {@link https://
|
|
42157
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
42165
42158
|
*
|
|
42166
42159
|
* @remarks
|
|
42167
42160
|
* [Api set: ExcelApi 1.4]
|
|
@@ -42202,7 +42195,7 @@ declare namespace Excel {
|
|
|
42202
42195
|
}
|
|
42203
42196
|
/**
|
|
42204
42197
|
* Represents an Excel PivotTable.
|
|
42205
|
-
To learn more about the PivotTable object model, read {@link https://
|
|
42198
|
+
To learn more about the PivotTable object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-pivottables | Work with PivotTables using the Excel JavaScript API}.
|
|
42206
42199
|
*
|
|
42207
42200
|
* @remarks
|
|
42208
42201
|
* [Api set: ExcelApi 1.3]
|
|
@@ -42639,7 +42632,7 @@ declare namespace Excel {
|
|
|
42639
42632
|
getItem(name: string): Excel.PivotHierarchy;
|
|
42640
42633
|
/**
|
|
42641
42634
|
* Gets a PivotHierarchy by name. If the PivotHierarchy does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
42642
|
-
For further information, see {@link https://
|
|
42635
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
42643
42636
|
*
|
|
42644
42637
|
* @remarks
|
|
42645
42638
|
* [Api set: ExcelApi 1.8]
|
|
@@ -42773,7 +42766,7 @@ declare namespace Excel {
|
|
|
42773
42766
|
getItem(name: string): Excel.RowColumnPivotHierarchy;
|
|
42774
42767
|
/**
|
|
42775
42768
|
* Gets a RowColumnPivotHierarchy by name. If the RowColumnPivotHierarchy does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
42776
|
-
For further information, see {@link https://
|
|
42769
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
42777
42770
|
*
|
|
42778
42771
|
* @remarks
|
|
42779
42772
|
* [Api set: ExcelApi 1.8]
|
|
@@ -42928,7 +42921,7 @@ declare namespace Excel {
|
|
|
42928
42921
|
getItem(name: string): Excel.FilterPivotHierarchy;
|
|
42929
42922
|
/**
|
|
42930
42923
|
* Gets a FilterPivotHierarchy by name. If the FilterPivotHierarchy does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
42931
|
-
For further information, see {@link https://
|
|
42924
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
42932
42925
|
*
|
|
42933
42926
|
* @remarks
|
|
42934
42927
|
* [Api set: ExcelApi 1.8]
|
|
@@ -43089,7 +43082,7 @@ declare namespace Excel {
|
|
|
43089
43082
|
getItem(name: string): Excel.DataPivotHierarchy;
|
|
43090
43083
|
/**
|
|
43091
43084
|
* Gets a DataPivotHierarchy by name. If the DataPivotHierarchy does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
43092
|
-
For further information, see {@link https://
|
|
43085
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
43093
43086
|
*
|
|
43094
43087
|
* @remarks
|
|
43095
43088
|
* [Api set: ExcelApi 1.8]
|
|
@@ -43284,7 +43277,7 @@ declare namespace Excel {
|
|
|
43284
43277
|
getItem(name: string): Excel.PivotField;
|
|
43285
43278
|
/**
|
|
43286
43279
|
* Gets a PivotField by name. If the PivotField does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
43287
|
-
For further information, see {@link https://
|
|
43280
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
43288
43281
|
*
|
|
43289
43282
|
* @remarks
|
|
43290
43283
|
* [Api set: ExcelApi 1.8]
|
|
@@ -43526,7 +43519,7 @@ declare namespace Excel {
|
|
|
43526
43519
|
getItem(name: string): Excel.PivotItem;
|
|
43527
43520
|
/**
|
|
43528
43521
|
* Gets a PivotItem by name. If the PivotItem does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
43529
|
-
For further information, see {@link https://
|
|
43522
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
43530
43523
|
*
|
|
43531
43524
|
* @remarks
|
|
43532
43525
|
* [Api set: ExcelApi 1.8]
|
|
@@ -44052,7 +44045,7 @@ declare namespace Excel {
|
|
|
44052
44045
|
getItem(key: string): Excel.WorksheetCustomProperty;
|
|
44053
44046
|
/**
|
|
44054
44047
|
* Gets a custom property object by its key, which is case-insensitive. If the custom property doesn't exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
44055
|
-
For further information, see {@link https://
|
|
44048
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
44056
44049
|
*
|
|
44057
44050
|
* @remarks
|
|
44058
44051
|
* [Api set: ExcelApi 1.12]
|
|
@@ -44330,7 +44323,7 @@ declare namespace Excel {
|
|
|
44330
44323
|
getItem(key: string): Excel.CustomProperty;
|
|
44331
44324
|
/**
|
|
44332
44325
|
* Gets a custom property object by its key, which is case-insensitive. If the custom property doesn't exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
44333
|
-
For further information, see {@link https://
|
|
44326
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
44334
44327
|
*
|
|
44335
44328
|
* @remarks
|
|
44336
44329
|
* [Api set: ExcelApi 1.7]
|
|
@@ -44427,7 +44420,7 @@ declare namespace Excel {
|
|
|
44427
44420
|
/**
|
|
44428
44421
|
* Returns a conditional format identified by its ID.
|
|
44429
44422
|
If the conditional format object does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
44430
|
-
For further information, see {@link https://
|
|
44423
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
44431
44424
|
*
|
|
44432
44425
|
* @remarks
|
|
44433
44426
|
* [Api set: ExcelApi 1.14]
|
|
@@ -44461,7 +44454,7 @@ declare namespace Excel {
|
|
|
44461
44454
|
}
|
|
44462
44455
|
/**
|
|
44463
44456
|
* An object encapsulating a conditional format's range, format, rule, and other properties.
|
|
44464
|
-
To learn more about the conditional formatting object model, read {@link https://
|
|
44457
|
+
To learn more about the conditional formatting object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-conditional-formatting | Apply conditional formatting to Excel ranges}.
|
|
44465
44458
|
*
|
|
44466
44459
|
* @remarks
|
|
44467
44460
|
* [Api set: ExcelApi 1.6]
|
|
@@ -44708,7 +44701,7 @@ declare namespace Excel {
|
|
|
44708
44701
|
getRange(): Excel.Range;
|
|
44709
44702
|
/**
|
|
44710
44703
|
* Returns the range to which the conditonal format is applied. If the conditional format is applied to multiple ranges, then this method returns an object with its `isNullObject` property set to `true`.
|
|
44711
|
-
For further information, see {@link https://
|
|
44704
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
44712
44705
|
*
|
|
44713
44706
|
* @remarks
|
|
44714
44707
|
* [Api set: ExcelApi 1.6]
|
|
@@ -44803,7 +44796,7 @@ declare namespace Excel {
|
|
|
44803
44796
|
*/
|
|
44804
44797
|
barDirection: Excel.ConditionalDataBarDirection | "Context" | "LeftToRight" | "RightToLeft";
|
|
44805
44798
|
/**
|
|
44806
|
-
* The rule for what
|
|
44799
|
+
* The rule for what constitutes the lower bound (and how to calculate it, if applicable) for a data bar.
|
|
44807
44800
|
The `ConditionalDataBarRule` object must be set as a JSON object (use `x.lowerBoundRule = {...}` instead of `x.lowerBoundRule.formula = ...`).
|
|
44808
44801
|
*
|
|
44809
44802
|
* @remarks
|
|
@@ -46334,7 +46327,7 @@ declare namespace Excel {
|
|
|
46334
46327
|
/**
|
|
46335
46328
|
* Gets a style by name.
|
|
46336
46329
|
If the style object does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
46337
|
-
For further information, see {@link https://
|
|
46330
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
46338
46331
|
*
|
|
46339
46332
|
* @remarks
|
|
46340
46333
|
* [Api set: ExcelApi 1.14]
|
|
@@ -46415,7 +46408,7 @@ declare namespace Excel {
|
|
|
46415
46408
|
getItem(name: string): Excel.TableStyle;
|
|
46416
46409
|
/**
|
|
46417
46410
|
* Gets a `TableStyle` by name. If the table style does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
46418
|
-
For further information, see {@link https://
|
|
46411
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
46419
46412
|
*
|
|
46420
46413
|
* @remarks
|
|
46421
46414
|
* [Api set: ExcelApi 1.10]
|
|
@@ -46579,7 +46572,7 @@ declare namespace Excel {
|
|
|
46579
46572
|
getItem(name: string): Excel.PivotTableStyle;
|
|
46580
46573
|
/**
|
|
46581
46574
|
* Gets a `PivotTableStyle` by name. If the `PivotTableStyle` does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
46582
|
-
For further information, see {@link https://
|
|
46575
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
46583
46576
|
*
|
|
46584
46577
|
* @remarks
|
|
46585
46578
|
* [Api set: ExcelApi 1.10]
|
|
@@ -46743,7 +46736,7 @@ declare namespace Excel {
|
|
|
46743
46736
|
getItem(name: string): Excel.SlicerStyle;
|
|
46744
46737
|
/**
|
|
46745
46738
|
* Gets a `SlicerStyle` by name. If the slicer style doesn't exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
46746
|
-
For further information, see {@link https://
|
|
46739
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
46747
46740
|
*
|
|
46748
46741
|
* @remarks
|
|
46749
46742
|
* [Api set: ExcelApi 1.10]
|
|
@@ -46907,7 +46900,7 @@ declare namespace Excel {
|
|
|
46907
46900
|
getItem(name: string): Excel.TimelineStyle;
|
|
46908
46901
|
/**
|
|
46909
46902
|
* Gets a `TimelineStyle` by name. If the timeline style doesn't exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
46910
|
-
For further information, see {@link https://
|
|
46903
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
46911
46904
|
*
|
|
46912
46905
|
* @remarks
|
|
46913
46906
|
* [Api set: ExcelApi 1.10]
|
|
@@ -47189,7 +47182,7 @@ declare namespace Excel {
|
|
|
47189
47182
|
getPrintArea(): Excel.RangeAreas;
|
|
47190
47183
|
/**
|
|
47191
47184
|
* Gets the `RangeAreas` object, comprising one or more rectangular ranges, that represents the print area for the worksheet. If there is no print area, then this method returns an object with its `isNullObject` property set to `true`.
|
|
47192
|
-
For further information, see {@link https://
|
|
47185
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
47193
47186
|
*
|
|
47194
47187
|
* @remarks
|
|
47195
47188
|
* [Api set: ExcelApi 1.9]
|
|
@@ -47204,7 +47197,7 @@ declare namespace Excel {
|
|
|
47204
47197
|
getPrintTitleColumns(): Excel.Range;
|
|
47205
47198
|
/**
|
|
47206
47199
|
* Gets the range object representing the title columns. If not set, then this method returns an object with its `isNullObject` property set to `true`.
|
|
47207
|
-
For further information, see {@link https://
|
|
47200
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
47208
47201
|
*
|
|
47209
47202
|
* @remarks
|
|
47210
47203
|
* [Api set: ExcelApi 1.9]
|
|
@@ -47219,7 +47212,7 @@ declare namespace Excel {
|
|
|
47219
47212
|
getPrintTitleRows(): Excel.Range;
|
|
47220
47213
|
/**
|
|
47221
47214
|
* Gets the range object representing the title rows. If not set, then this method returns an object with its `isNullObject` property set to `true`.
|
|
47222
|
-
For further information, see {@link https://
|
|
47215
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
47223
47216
|
*
|
|
47224
47217
|
* @remarks
|
|
47225
47218
|
* [Api set: ExcelApi 1.9]
|
|
@@ -47921,7 +47914,7 @@ declare namespace Excel {
|
|
|
47921
47914
|
*/
|
|
47922
47915
|
getItemAt(index: number): Excel.Comment;
|
|
47923
47916
|
/**
|
|
47924
|
-
* Gets the comment from the specified cell.
|
|
47917
|
+
* Gets the comment from the specified cell. If there is no comment in the cell, an error is thrown.
|
|
47925
47918
|
*
|
|
47926
47919
|
* @remarks
|
|
47927
47920
|
* [Api set: ExcelApi 1.10]
|
|
@@ -47941,7 +47934,7 @@ declare namespace Excel {
|
|
|
47941
47934
|
/**
|
|
47942
47935
|
* Gets a comment from the collection based on its ID.
|
|
47943
47936
|
If the comment object does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
47944
|
-
For further information, see {@link https://
|
|
47937
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
47945
47938
|
*
|
|
47946
47939
|
* @remarks
|
|
47947
47940
|
* [Api set: ExcelApi 1.14]
|
|
@@ -48196,7 +48189,7 @@ declare namespace Excel {
|
|
|
48196
48189
|
/**
|
|
48197
48190
|
* Returns a comment reply identified by its ID.
|
|
48198
48191
|
If the comment reply object does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
48199
|
-
For further information, see {@link https://
|
|
48192
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
48200
48193
|
*
|
|
48201
48194
|
* @remarks
|
|
48202
48195
|
* [Api set: ExcelApi 1.14]
|
|
@@ -48475,7 +48468,7 @@ declare namespace Excel {
|
|
|
48475
48468
|
/**
|
|
48476
48469
|
* Gets a shape using its name or ID.
|
|
48477
48470
|
If the shape object does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
48478
|
-
For further information, see {@link https://
|
|
48471
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
48479
48472
|
*
|
|
48480
48473
|
* @remarks
|
|
48481
48474
|
* [Api set: ExcelApi 1.14]
|
|
@@ -48509,7 +48502,7 @@ declare namespace Excel {
|
|
|
48509
48502
|
}
|
|
48510
48503
|
/**
|
|
48511
48504
|
* Represents a generic shape object in the worksheet. A shape could be a geometric shape, a line, a group of shapes, etc.
|
|
48512
|
-
To learn more about the shape object model, read {@link https://
|
|
48505
|
+
To learn more about the shape object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-shapes | Work with shapes using the Excel JavaScript API}.
|
|
48513
48506
|
*
|
|
48514
48507
|
* @remarks
|
|
48515
48508
|
* [Api set: ExcelApi 1.9]
|
|
@@ -49093,7 +49086,7 @@ declare namespace Excel {
|
|
|
49093
49086
|
/**
|
|
49094
49087
|
* Gets a shape using its name or ID.
|
|
49095
49088
|
If the shape object does not exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
49096
|
-
For further information, see {@link https://
|
|
49089
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
49097
49090
|
*
|
|
49098
49091
|
* @remarks
|
|
49099
49092
|
* [Api set: ExcelApi 1.14]
|
|
@@ -49984,7 +49977,7 @@ declare namespace Excel {
|
|
|
49984
49977
|
getItemAt(index: number): Excel.Slicer;
|
|
49985
49978
|
/**
|
|
49986
49979
|
* Gets a slicer using its name or ID. If the slicer doesn't exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
49987
|
-
For further information, see {@link https://
|
|
49980
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
49988
49981
|
*
|
|
49989
49982
|
* @remarks
|
|
49990
49983
|
* [Api set: ExcelApi 1.10]
|
|
@@ -50128,7 +50121,7 @@ declare namespace Excel {
|
|
|
50128
50121
|
getItemAt(index: number): Excel.SlicerItem;
|
|
50129
50122
|
/**
|
|
50130
50123
|
* Gets a slicer item using its key or name. If the slicer item doesn't exist, then this method returns an object with its `isNullObject` property set to `true`.
|
|
50131
|
-
For further information, see {@link https://
|
|
50124
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
50132
50125
|
*
|
|
50133
50126
|
* @remarks
|
|
50134
50127
|
* [Api set: ExcelApi 1.10]
|
|
@@ -51030,7 +51023,7 @@ declare namespace Excel {
|
|
|
51030
51023
|
}
|
|
51031
51024
|
/**
|
|
51032
51025
|
* Specifies the data source type of the chart series.
|
|
51033
|
-
*
|
|
51026
|
+
*
|
|
51034
51027
|
* @remarks
|
|
51035
51028
|
* [Api set: ExcelApi 1.15]
|
|
51036
51029
|
*/
|
|
@@ -53682,6 +53675,8 @@ declare namespace Excel {
|
|
|
53682
53675
|
fill = "Fill"
|
|
53683
53676
|
}
|
|
53684
53677
|
/**
|
|
53678
|
+
* Determines the direction in which existing cells will be shifted to accommodate what is being inserted.
|
|
53679
|
+
*
|
|
53685
53680
|
* @remarks
|
|
53686
53681
|
* [Api set: ExcelApi 1.1]
|
|
53687
53682
|
*/
|
|
@@ -53933,6 +53928,8 @@ declare namespace Excel {
|
|
|
53933
53928
|
columns = "Columns"
|
|
53934
53929
|
}
|
|
53935
53930
|
/**
|
|
53931
|
+
* Represents the part of the cell used as the sorting criteria.
|
|
53932
|
+
*
|
|
53936
53933
|
* @remarks
|
|
53937
53934
|
* [Api set: ExcelApi 1.2]
|
|
53938
53935
|
*/
|
|
@@ -55160,6 +55157,8 @@ declare namespace Excel {
|
|
|
55160
55157
|
notAvailable = "NotAvailable"
|
|
55161
55158
|
}
|
|
55162
55159
|
/**
|
|
55160
|
+
* The position of a worksheet relative to another worksheet or the entire worksheet collection.
|
|
55161
|
+
*
|
|
55163
55162
|
* @remarks
|
|
55164
55163
|
* [Api set: ExcelApi 1.7]
|
|
55165
55164
|
*/
|
|
@@ -55312,7 +55311,7 @@ declare namespace Excel {
|
|
|
55312
55311
|
*/
|
|
55313
55312
|
fillSeries = "FillSeries",
|
|
55314
55313
|
/**
|
|
55315
|
-
* Populates the adjacent cells with the selected
|
|
55314
|
+
* Populates the adjacent cells with the selected formats.
|
|
55316
55315
|
* @remarks
|
|
55317
55316
|
* [Api set: ExcelApi 1.9]
|
|
55318
55317
|
*/
|
|
@@ -61081,6 +61080,7 @@ declare namespace Excel {
|
|
|
61081
61080
|
openWorkbookLinksBlocked = "OpenWorkbookLinksBlocked",
|
|
61082
61081
|
operationCellsExceedLimit = "OperationCellsExceedLimit",
|
|
61083
61082
|
pivotTableRangeConflict = "PivotTableRangeConflict",
|
|
61083
|
+
powerQueryRefreshResourceChallenge = "PowerQueryRefreshResourceChallenge",
|
|
61084
61084
|
rangeExceedsLimit = "RangeExceedsLimit",
|
|
61085
61085
|
refreshWorkbookLinksBlocked = "RefreshWorkbookLinksBlocked",
|
|
61086
61086
|
requestAborted = "RequestAborted",
|
|
@@ -61767,7 +61767,7 @@ declare namespace Excel {
|
|
|
61767
61767
|
*/
|
|
61768
61768
|
autoIndent?: boolean;
|
|
61769
61769
|
/**
|
|
61770
|
-
* Specifies the width of all
|
|
61770
|
+
* Specifies the width of all columns within the range. If the column widths are not uniform, `null` will be returned.
|
|
61771
61771
|
*
|
|
61772
61772
|
* @remarks
|
|
61773
61773
|
* [Api set: ExcelApi 1.2]
|
|
@@ -62932,7 +62932,7 @@ declare namespace Excel {
|
|
|
62932
62932
|
*/
|
|
62933
62933
|
textOrientation?: number;
|
|
62934
62934
|
/**
|
|
62935
|
-
* Specifies if the axis title is
|
|
62935
|
+
* Specifies if the axis title is visible.
|
|
62936
62936
|
*
|
|
62937
62937
|
* @remarks
|
|
62938
62938
|
* [Api set: ExcelApi 1.1]
|
|
@@ -63552,7 +63552,7 @@ declare namespace Excel {
|
|
|
63552
63552
|
*/
|
|
63553
63553
|
verticalAlignment?: Excel.ChartTextVerticalAlignment | "Center" | "Bottom" | "Top" | "Justify" | "Distributed";
|
|
63554
63554
|
/**
|
|
63555
|
-
* Specifies if the chart title is
|
|
63555
|
+
* Specifies if the chart title is visible.
|
|
63556
63556
|
*
|
|
63557
63557
|
* @remarks
|
|
63558
63558
|
* [Api set: ExcelApi 1.1]
|
|
@@ -64640,7 +64640,7 @@ declare namespace Excel {
|
|
|
64640
64640
|
*/
|
|
64641
64641
|
barDirection?: Excel.ConditionalDataBarDirection | "Context" | "LeftToRight" | "RightToLeft";
|
|
64642
64642
|
/**
|
|
64643
|
-
* The rule for what
|
|
64643
|
+
* The rule for what constitutes the lower bound (and how to calculate it, if applicable) for a data bar.
|
|
64644
64644
|
The `ConditionalDataBarRule` object must be set as a JSON object (use `x.lowerBoundRule = {...}` instead of `x.lowerBoundRule.formula = ...`).
|
|
64645
64645
|
*
|
|
64646
64646
|
* @remarks
|
|
@@ -67137,8 +67137,8 @@ declare namespace Excel {
|
|
|
67137
67137
|
*/
|
|
67138
67138
|
type?: Excel.NamedItemType | "String" | "Integer" | "Double" | "Boolean" | "Range" | "Error" | "Array";
|
|
67139
67139
|
/**
|
|
67140
|
-
* Represents the value computed by the name's formula. For a named range it will return the range address.
|
|
67141
|
-
|
|
67140
|
+
* Represents the value computed by the name's formula. For a named range, it will return the range address.
|
|
67141
|
+
This API returns the #VALUE! error in the Excel UI if it refers to a user-defined function.
|
|
67142
67142
|
*
|
|
67143
67143
|
* @remarks
|
|
67144
67144
|
* [Api set: ExcelApi 1.1]
|
|
@@ -67547,7 +67547,7 @@ declare namespace Excel {
|
|
|
67547
67547
|
*/
|
|
67548
67548
|
autoIndent?: boolean;
|
|
67549
67549
|
/**
|
|
67550
|
-
* Specifies the width of all
|
|
67550
|
+
* Specifies the width of all columns within the range. If the column widths are not uniform, `null` will be returned.
|
|
67551
67551
|
*
|
|
67552
67552
|
* @remarks
|
|
67553
67553
|
* [Api set: ExcelApi 1.2]
|
|
@@ -68802,7 +68802,7 @@ declare namespace Excel {
|
|
|
68802
68802
|
*/
|
|
68803
68803
|
textOrientation?: number;
|
|
68804
68804
|
/**
|
|
68805
|
-
* Specifies if the axis title is
|
|
68805
|
+
* Specifies if the axis title is visible.
|
|
68806
68806
|
*
|
|
68807
68807
|
* @remarks
|
|
68808
68808
|
* [Api set: ExcelApi 1.1]
|
|
@@ -69485,7 +69485,7 @@ declare namespace Excel {
|
|
|
69485
69485
|
*/
|
|
69486
69486
|
verticalAlignment?: Excel.ChartTextVerticalAlignment | "Center" | "Bottom" | "Top" | "Justify" | "Distributed";
|
|
69487
69487
|
/**
|
|
69488
|
-
* Specifies if the chart title is
|
|
69488
|
+
* Specifies if the chart title is visible.
|
|
69489
69489
|
*
|
|
69490
69490
|
* @remarks
|
|
69491
69491
|
* [Api set: ExcelApi 1.1]
|
|
@@ -70923,7 +70923,7 @@ declare namespace Excel {
|
|
|
70923
70923
|
*/
|
|
70924
70924
|
barDirection?: Excel.ConditionalDataBarDirection | "Context" | "LeftToRight" | "RightToLeft";
|
|
70925
70925
|
/**
|
|
70926
|
-
* The rule for what
|
|
70926
|
+
* The rule for what constitutes the lower bound (and how to calculate it, if applicable) for a data bar.
|
|
70927
70927
|
The `ConditionalDataBarRule` object must be set as a JSON object (use `x.lowerBoundRule = {...}` instead of `x.lowerBoundRule.formula = ...`).
|
|
70928
70928
|
*
|
|
70929
70929
|
* @remarks
|
|
@@ -72968,7 +72968,7 @@ declare namespace Excel {
|
|
|
72968
72968
|
}
|
|
72969
72969
|
/**
|
|
72970
72970
|
* Workbook is the top level object which contains related workbook objects such as worksheets, tables, and ranges.
|
|
72971
|
-
To learn more about the workbook object model, read {@link https://
|
|
72971
|
+
To learn more about the workbook object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-workbooks | Work with workbooks using the Excel JavaScript API}.
|
|
72972
72972
|
*
|
|
72973
72973
|
* @remarks
|
|
72974
72974
|
* [Api set: ExcelApi 1.1]
|
|
@@ -73101,7 +73101,7 @@ declare namespace Excel {
|
|
|
73101
73101
|
}
|
|
73102
73102
|
/**
|
|
73103
73103
|
* An Excel worksheet is a grid of cells. It can contain data, tables, charts, etc.
|
|
73104
|
-
To learn more about the worksheet object model, read {@link https://
|
|
73104
|
+
To learn more about the worksheet object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-worksheets | Work with worksheets using the Excel JavaScript API}.
|
|
73105
73105
|
*
|
|
73106
73106
|
* @remarks
|
|
73107
73107
|
* [Api set: ExcelApi 1.1]
|
|
@@ -73413,7 +73413,7 @@ declare namespace Excel {
|
|
|
73413
73413
|
}
|
|
73414
73414
|
/**
|
|
73415
73415
|
* Range represents a set of one or more contiguous cells such as a cell, a row, a column, or a block of cells.
|
|
73416
|
-
To learn more about how ranges are used throughout the API, start with {@link https://
|
|
73416
|
+
To learn more about how ranges are used throughout the API, start with {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-core-concepts#ranges | Ranges in the Excel JavaScript API}.
|
|
73417
73417
|
*
|
|
73418
73418
|
* @remarks
|
|
73419
73419
|
* [Api set: ExcelApi 1.1]
|
|
@@ -73684,7 +73684,7 @@ declare namespace Excel {
|
|
|
73684
73684
|
}
|
|
73685
73685
|
/**
|
|
73686
73686
|
* `RangeAreas` represents a collection of one or more rectangular ranges in the same worksheet.
|
|
73687
|
-
To learn how to use discontiguous ranges, read {@link https://
|
|
73687
|
+
To learn how to use discontiguous ranges, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-multiple-ranges | Work with multiple ranges simultaneously in Excel add-ins}.
|
|
73688
73688
|
*
|
|
73689
73689
|
* @remarks
|
|
73690
73690
|
* [Api set: ExcelApi 1.9]
|
|
@@ -74079,7 +74079,7 @@ declare namespace Excel {
|
|
|
74079
74079
|
worksheet?: Excel.Interfaces.WorksheetLoadOptions;
|
|
74080
74080
|
/**
|
|
74081
74081
|
* For EACH ITEM in the collection: Returns the worksheet to which the named item is scoped. If the item is scoped to the workbook instead, then this method returns an object with its `isNullObject` property set to `true`.
|
|
74082
|
-
For further information, see {@link https://
|
|
74082
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
74083
74083
|
*
|
|
74084
74084
|
* @remarks
|
|
74085
74085
|
* [Api set: ExcelApi 1.4]
|
|
@@ -74121,8 +74121,8 @@ declare namespace Excel {
|
|
|
74121
74121
|
*/
|
|
74122
74122
|
type?: boolean;
|
|
74123
74123
|
/**
|
|
74124
|
-
* For EACH ITEM in the collection: Represents the value computed by the name's formula. For a named range it will return the range address.
|
|
74125
|
-
|
|
74124
|
+
* For EACH ITEM in the collection: Represents the value computed by the name's formula. For a named range, it will return the range address.
|
|
74125
|
+
This API returns the #VALUE! error in the Excel UI if it refers to a user-defined function.
|
|
74126
74126
|
*
|
|
74127
74127
|
* @remarks
|
|
74128
74128
|
* [Api set: ExcelApi 1.1]
|
|
@@ -74181,7 +74181,7 @@ declare namespace Excel {
|
|
|
74181
74181
|
worksheet?: Excel.Interfaces.WorksheetLoadOptions;
|
|
74182
74182
|
/**
|
|
74183
74183
|
* Returns the worksheet to which the named item is scoped. If the item is scoped to the workbook instead, then this method returns an object with its `isNullObject` property set to `true`.
|
|
74184
|
-
For further information, see {@link https://
|
|
74184
|
+
For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
74185
74185
|
*
|
|
74186
74186
|
* @remarks
|
|
74187
74187
|
* [Api set: ExcelApi 1.4]
|
|
@@ -74223,8 +74223,8 @@ declare namespace Excel {
|
|
|
74223
74223
|
*/
|
|
74224
74224
|
type?: boolean;
|
|
74225
74225
|
/**
|
|
74226
|
-
* Represents the value computed by the name's formula. For a named range it will return the range address.
|
|
74227
|
-
|
|
74226
|
+
* Represents the value computed by the name's formula. For a named range, it will return the range address.
|
|
74227
|
+
This API returns the #VALUE! error in the Excel UI if it refers to a user-defined function.
|
|
74228
74228
|
*
|
|
74229
74229
|
* @remarks
|
|
74230
74230
|
* [Api set: ExcelApi 1.1]
|
|
@@ -74606,7 +74606,7 @@ declare namespace Excel {
|
|
|
74606
74606
|
}
|
|
74607
74607
|
/**
|
|
74608
74608
|
* Represents an Excel table.
|
|
74609
|
-
To learn more about the table object model, read {@link https://
|
|
74609
|
+
To learn more about the table object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-tables | Work with tables using the Excel JavaScript API}.
|
|
74610
74610
|
*
|
|
74611
74611
|
* @remarks
|
|
74612
74612
|
* [Api set: ExcelApi 1.1]
|
|
@@ -74965,7 +74965,7 @@ declare namespace Excel {
|
|
|
74965
74965
|
}
|
|
74966
74966
|
/**
|
|
74967
74967
|
* Represents the data validation applied to the current range.
|
|
74968
|
-
To learn more about the data validation object model, read {@link https://
|
|
74968
|
+
To learn more about the data validation object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-data-validation | Add data validation to Excel ranges}.
|
|
74969
74969
|
*
|
|
74970
74970
|
* @remarks
|
|
74971
74971
|
* [Api set: ExcelApi 1.8]
|
|
@@ -75093,7 +75093,7 @@ declare namespace Excel {
|
|
|
75093
75093
|
*/
|
|
75094
75094
|
autoIndent?: boolean;
|
|
75095
75095
|
/**
|
|
75096
|
-
* Specifies the width of all
|
|
75096
|
+
* Specifies the width of all columns within the range. If the column widths are not uniform, `null` will be returned.
|
|
75097
75097
|
*
|
|
75098
75098
|
* @remarks
|
|
75099
75099
|
* [Api set: ExcelApi 1.2]
|
|
@@ -75625,7 +75625,7 @@ declare namespace Excel {
|
|
|
75625
75625
|
}
|
|
75626
75626
|
/**
|
|
75627
75627
|
* Represents a chart object in a workbook.
|
|
75628
|
-
To learn more about the chart object model, see {@link https://
|
|
75628
|
+
To learn more about the chart object model, see {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-charts | Work with charts using the Excel JavaScript API}.
|
|
75629
75629
|
*
|
|
75630
75630
|
* @remarks
|
|
75631
75631
|
* [Api set: ExcelApi 1.1]
|
|
@@ -77095,7 +77095,7 @@ declare namespace Excel {
|
|
|
77095
77095
|
*/
|
|
77096
77096
|
textOrientation?: boolean;
|
|
77097
77097
|
/**
|
|
77098
|
-
* Specifies if the axis title is
|
|
77098
|
+
* Specifies if the axis title is visible.
|
|
77099
77099
|
*
|
|
77100
77100
|
* @remarks
|
|
77101
77101
|
* [Api set: ExcelApi 1.1]
|
|
@@ -77956,7 +77956,7 @@ declare namespace Excel {
|
|
|
77956
77956
|
*/
|
|
77957
77957
|
verticalAlignment?: boolean;
|
|
77958
77958
|
/**
|
|
77959
|
-
* Specifies if the chart title is
|
|
77959
|
+
* Specifies if the chart title is visible.
|
|
77960
77960
|
*
|
|
77961
77961
|
* @remarks
|
|
77962
77962
|
* [Api set: ExcelApi 1.1]
|
|
@@ -79089,7 +79089,7 @@ declare namespace Excel {
|
|
|
79089
79089
|
}
|
|
79090
79090
|
/**
|
|
79091
79091
|
* Represents an Excel PivotTable.
|
|
79092
|
-
To learn more about the PivotTable object model, read {@link https://
|
|
79092
|
+
To learn more about the PivotTable object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-pivottables | Work with PivotTables using the Excel JavaScript API}.
|
|
79093
79093
|
*
|
|
79094
79094
|
* @remarks
|
|
79095
79095
|
* [Api set: ExcelApi 1.3]
|
|
@@ -80113,7 +80113,7 @@ declare namespace Excel {
|
|
|
80113
80113
|
}
|
|
80114
80114
|
/**
|
|
80115
80115
|
* An object encapsulating a conditional format's range, format, rule, and other properties.
|
|
80116
|
-
To learn more about the conditional formatting object model, read {@link https://
|
|
80116
|
+
To learn more about the conditional formatting object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-conditional-formatting | Apply conditional formatting to Excel ranges}.
|
|
80117
80117
|
*
|
|
80118
80118
|
* @remarks
|
|
80119
80119
|
* [Api set: ExcelApi 1.6]
|
|
@@ -80321,7 +80321,7 @@ declare namespace Excel {
|
|
|
80321
80321
|
*/
|
|
80322
80322
|
barDirection?: boolean;
|
|
80323
80323
|
/**
|
|
80324
|
-
* The rule for what
|
|
80324
|
+
* The rule for what constitutes the lower bound (and how to calculate it, if applicable) for a data bar.
|
|
80325
80325
|
The `ConditionalDataBarRule` object must be set as a JSON object (use `x.lowerBoundRule = {...}` instead of `x.lowerBoundRule.formula = ...`).
|
|
80326
80326
|
*
|
|
80327
80327
|
* @remarks
|
|
@@ -82547,7 +82547,7 @@ declare namespace Excel {
|
|
|
82547
82547
|
}
|
|
82548
82548
|
/**
|
|
82549
82549
|
* Represents a generic shape object in the worksheet. A shape could be a geometric shape, a line, a group of shapes, etc.
|
|
82550
|
-
To learn more about the shape object model, read {@link https://
|
|
82550
|
+
To learn more about the shape object model, read {@link https://learn.microsoft.com/office/dev/add-ins/excel/excel-add-ins-shapes | Work with shapes using the Excel JavaScript API}.
|
|
82551
82551
|
*
|
|
82552
82552
|
* @remarks
|
|
82553
82553
|
* [Api set: ExcelApi 1.9]
|
office-js/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.361",
|
|
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",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "c4f7eccb9f8b8844f1ba8905ed14bf9ef6d424e30e95d1bfbe344cc7e1d6e0e0",
|
|
49
49
|
"typeScriptVersion": "4.5"
|
|
50
50
|
}
|