@types/office-js 1.0.523 → 1.0.525
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 +144 -12
- 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: Wed, 13 Aug 2025 18:41:38 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -7270,6 +7270,14 @@ declare namespace Office {
|
|
|
7270
7270
|
* event.
|
|
7271
7271
|
*/
|
|
7272
7272
|
themeId: ThemeId;
|
|
7273
|
+
/**
|
|
7274
|
+
* Gets the Office host native theme.
|
|
7275
|
+
*
|
|
7276
|
+
* @remarks
|
|
7277
|
+
*
|
|
7278
|
+
* **Important**: The `fluentThemeData` property is only supported on Win32.
|
|
7279
|
+
*/
|
|
7280
|
+
fluentThemeData?: object;
|
|
7273
7281
|
}
|
|
7274
7282
|
/**
|
|
7275
7283
|
* Specifies a cell, or row, or column, by its zero-based row and/or column number. Example: `{row: 3, column: 4}` specifies the cell in the 3rd
|
|
@@ -21938,9 +21946,8 @@ declare namespace Office {
|
|
|
21938
21946
|
* - In Outlook on the web, on Windows (new and classic), and on Mac (classic UI), you can have a maximum of 500 recipients in a target field.
|
|
21939
21947
|
* If you need to add more than 100 recipients to a mail item, you can call `addAsync` repeatedly, but be mindful of the recipient limit of the field.
|
|
21940
21948
|
*
|
|
21941
|
-
* - In Outlook on Android and on iOS, the `addAsync` method
|
|
21942
|
-
* supported
|
|
21943
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
21949
|
+
* - In Outlook on Android and on iOS, the `addAsync` method is supported starting in Version 4.2530.0. On these mobile clients, the `addAsync` method isn't
|
|
21950
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
21944
21951
|
*
|
|
21945
21952
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
21946
21953
|
*
|
|
@@ -21978,9 +21985,8 @@ declare namespace Office {
|
|
|
21978
21985
|
* - In Outlook on the web, on Windows (new and classic), and on Mac (classic UI), you can have a maximum of 500 recipients in a target field.
|
|
21979
21986
|
* If you need to add more than 100 recipients to a mail item, you can call `addAsync` repeatedly, but be mindful of the recipient limit of the field.
|
|
21980
21987
|
*
|
|
21981
|
-
* - In Outlook on Android and on iOS, the `addAsync` method
|
|
21982
|
-
* supported
|
|
21983
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
21988
|
+
* - In Outlook on Android and on iOS, the `addAsync` method is supported starting in Version 4.2530.0. On these mobile clients, the `addAsync` method isn't
|
|
21989
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
21984
21990
|
*
|
|
21985
21991
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
21986
21992
|
*
|
|
@@ -22042,6 +22048,8 @@ declare namespace Office {
|
|
|
22042
22048
|
* the value of the `recipientType` property for existing recipients isn't updated and will still be based on the domain of the previously selected account.
|
|
22043
22049
|
* To get the correct recipient types after switching accounts, you must first remove the existing recipients, then add them back to the mail item.
|
|
22044
22050
|
*
|
|
22051
|
+
* In Outlook on Android and on iOS, only the `getAsync` method is supported when a user replies from the reply field at the bottom of a message.
|
|
22052
|
+
*
|
|
22045
22053
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
22046
22054
|
* `asyncContext`: Developers can provide any object they wish to access in the callback function.
|
|
22047
22055
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
@@ -22091,6 +22099,8 @@ declare namespace Office {
|
|
|
22091
22099
|
* the value of the `recipientType` property for existing recipients isn't updated and will still be based on the domain of the previously selected account.
|
|
22092
22100
|
* To get the correct recipient types after switching accounts, you must first remove the existing recipients, then add them back to the mail item.
|
|
22093
22101
|
*
|
|
22102
|
+
* In Outlook on Android and on iOS, only the `getAsync` method is supported when a user replies from the reply field at the bottom of a message.
|
|
22103
|
+
*
|
|
22094
22104
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
22095
22105
|
* of type `Office.AsyncResult`. The `asyncResult.value` property of the result is an array of
|
|
22096
22106
|
* {@link Office.EmailAddressDetails | EmailAddressDetails} objects.
|
|
@@ -22117,9 +22127,8 @@ declare namespace Office {
|
|
|
22117
22127
|
* - In Outlook on the web, on Windows (new and classic), and on Mac (classic UI), you can have a maximum of 500 recipients in a target field.
|
|
22118
22128
|
* If you need to add more recipients after setting 100 recipients, you can call `addAsync` repeatedly, but be mindful of the recipient limit of the field.
|
|
22119
22129
|
*
|
|
22120
|
-
* - In Outlook on Android and on iOS, the `setAsync` method
|
|
22121
|
-
* supported
|
|
22122
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
22130
|
+
* - In Outlook on Android and on iOS, the `setAsync` method is supported starting in Version 4.2530.0. On these mobile clients, the `setAsync` method isn't
|
|
22131
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22123
22132
|
*
|
|
22124
22133
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
22125
22134
|
*
|
|
@@ -22160,9 +22169,8 @@ declare namespace Office {
|
|
|
22160
22169
|
* - In Outlook on the web, on Windows (new and classic), and on Mac (classic UI), you can have a maximum of 500 recipients in a target field.
|
|
22161
22170
|
* If you need to add more recipients after setting 100 recipients, you can call `addAsync` repeatedly, but be mindful of the recipient limit of the field.
|
|
22162
22171
|
*
|
|
22163
|
-
* - In Outlook on Android and on iOS, the `setAsync` method
|
|
22164
|
-
* supported
|
|
22165
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
22172
|
+
* - In Outlook on Android and on iOS, the `setAsync` method is supported starting in Version 4.2530.0. On these mobile clients, the `setAsync` method isn't
|
|
22173
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22166
22174
|
*
|
|
22167
22175
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
22168
22176
|
*
|
|
@@ -30617,6 +30625,8 @@ declare namespace Excel {
|
|
|
30617
30625
|
*
|
|
30618
30626
|
* @remarks
|
|
30619
30627
|
* [Api set: ExcelApi 1.19]
|
|
30628
|
+
*
|
|
30629
|
+
* This interface isn't supported in Excel on the web.
|
|
30620
30630
|
*/
|
|
30621
30631
|
interface LinkedEntityLoadServiceRequest {
|
|
30622
30632
|
/**
|
|
@@ -30624,6 +30634,8 @@ declare namespace Excel {
|
|
|
30624
30634
|
*
|
|
30625
30635
|
* @remarks
|
|
30626
30636
|
* [Api set: ExcelApi 1.19]
|
|
30637
|
+
*
|
|
30638
|
+
* This property isn't supported in Excel on the web.
|
|
30627
30639
|
*/
|
|
30628
30640
|
domainId: string;
|
|
30629
30641
|
/**
|
|
@@ -30631,6 +30643,8 @@ declare namespace Excel {
|
|
|
30631
30643
|
*
|
|
30632
30644
|
* @remarks
|
|
30633
30645
|
* [Api set: ExcelApi 1.19]
|
|
30646
|
+
*
|
|
30647
|
+
* This property isn't supported in Excel on the web.
|
|
30634
30648
|
*/
|
|
30635
30649
|
entities: LinkedEntityIdCulture[];
|
|
30636
30650
|
}
|
|
@@ -30690,6 +30704,8 @@ declare namespace Excel {
|
|
|
30690
30704
|
*
|
|
30691
30705
|
* @remarks
|
|
30692
30706
|
* [Api set: ExcelApi 1.19]
|
|
30707
|
+
*
|
|
30708
|
+
* This interface isn't supported in Excel on the web.
|
|
30693
30709
|
*/
|
|
30694
30710
|
interface LinkedEntityIdCulture {
|
|
30695
30711
|
/**
|
|
@@ -30697,6 +30713,8 @@ declare namespace Excel {
|
|
|
30697
30713
|
*
|
|
30698
30714
|
* @remarks
|
|
30699
30715
|
* [Api set: ExcelApi 1.19]
|
|
30716
|
+
*
|
|
30717
|
+
* This property isn't supported in Excel on the web.
|
|
30700
30718
|
*/
|
|
30701
30719
|
entityId: string;
|
|
30702
30720
|
/**
|
|
@@ -30704,6 +30722,8 @@ declare namespace Excel {
|
|
|
30704
30722
|
*
|
|
30705
30723
|
* @remarks
|
|
30706
30724
|
* [Api set: ExcelApi 1.19]
|
|
30725
|
+
*
|
|
30726
|
+
* This property isn't supported in Excel on the web.
|
|
30707
30727
|
*/
|
|
30708
30728
|
culture: string;
|
|
30709
30729
|
}
|
|
@@ -55863,6 +55883,8 @@ declare namespace Excel {
|
|
|
55863
55883
|
*
|
|
55864
55884
|
* @remarks
|
|
55865
55885
|
* [Api set: ExcelApi 1.19]
|
|
55886
|
+
*
|
|
55887
|
+
* This class isn't supported in Excel on the web.
|
|
55866
55888
|
*/
|
|
55867
55889
|
class LinkedEntityDataDomain extends OfficeExtension.ClientObject {
|
|
55868
55890
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -55873,6 +55895,8 @@ declare namespace Excel {
|
|
|
55873
55895
|
*
|
|
55874
55896
|
* @remarks
|
|
55875
55897
|
* [Api set: ExcelApi 1.19]
|
|
55898
|
+
*
|
|
55899
|
+
* This property isn't supported in Excel on the web.
|
|
55876
55900
|
*/
|
|
55877
55901
|
readonly dataProvider: string;
|
|
55878
55902
|
/**
|
|
@@ -55881,6 +55905,8 @@ declare namespace Excel {
|
|
|
55881
55905
|
*
|
|
55882
55906
|
* @remarks
|
|
55883
55907
|
* [Api set: ExcelApi 1.19]
|
|
55908
|
+
*
|
|
55909
|
+
* This property isn't supported in Excel on the web.
|
|
55884
55910
|
*/
|
|
55885
55911
|
readonly id: string;
|
|
55886
55912
|
/**
|
|
@@ -55889,6 +55915,8 @@ declare namespace Excel {
|
|
|
55889
55915
|
*
|
|
55890
55916
|
* @remarks
|
|
55891
55917
|
* [Api set: ExcelApi 1.19]
|
|
55918
|
+
*
|
|
55919
|
+
* This property isn't supported in Excel on the web.
|
|
55892
55920
|
*/
|
|
55893
55921
|
readonly lastRefreshed: Date;
|
|
55894
55922
|
/**
|
|
@@ -55898,6 +55926,8 @@ declare namespace Excel {
|
|
|
55898
55926
|
*
|
|
55899
55927
|
* @remarks
|
|
55900
55928
|
* [Api set: ExcelApi 1.19]
|
|
55929
|
+
*
|
|
55930
|
+
* This property isn't supported in Excel on the web.
|
|
55901
55931
|
*/
|
|
55902
55932
|
readonly loadFunctionId: string;
|
|
55903
55933
|
/**
|
|
@@ -55906,6 +55936,8 @@ declare namespace Excel {
|
|
|
55906
55936
|
*
|
|
55907
55937
|
* @remarks
|
|
55908
55938
|
* [Api set: ExcelApi 1.19]
|
|
55939
|
+
*
|
|
55940
|
+
* This property isn't supported in Excel on the web.
|
|
55909
55941
|
*/
|
|
55910
55942
|
readonly name: string;
|
|
55911
55943
|
/**
|
|
@@ -55914,6 +55946,8 @@ declare namespace Excel {
|
|
|
55914
55946
|
*
|
|
55915
55947
|
* @remarks
|
|
55916
55948
|
* [Api set: ExcelApi 1.19]
|
|
55949
|
+
*
|
|
55950
|
+
* This property isn't supported in Excel on the web.
|
|
55917
55951
|
*/
|
|
55918
55952
|
readonly periodicRefreshInterval: number;
|
|
55919
55953
|
/**
|
|
@@ -55923,6 +55957,8 @@ declare namespace Excel {
|
|
|
55923
55957
|
*
|
|
55924
55958
|
* @remarks
|
|
55925
55959
|
* [Api set: ExcelApi 1.19]
|
|
55960
|
+
*
|
|
55961
|
+
* This property isn't supported in Excel on the web.
|
|
55926
55962
|
*/
|
|
55927
55963
|
refreshMode: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
55928
55964
|
/**
|
|
@@ -55932,6 +55968,8 @@ declare namespace Excel {
|
|
|
55932
55968
|
*
|
|
55933
55969
|
* @remarks
|
|
55934
55970
|
* [Api set: ExcelApi 1.19]
|
|
55971
|
+
*
|
|
55972
|
+
* This property isn't supported in Excel on the web.
|
|
55935
55973
|
*/
|
|
55936
55974
|
readonly serviceId: number;
|
|
55937
55975
|
/**
|
|
@@ -55940,6 +55978,8 @@ declare namespace Excel {
|
|
|
55940
55978
|
*
|
|
55941
55979
|
* @remarks
|
|
55942
55980
|
* [Api set: ExcelApi 1.19]
|
|
55981
|
+
*
|
|
55982
|
+
* This property isn't supported in Excel on the web.
|
|
55943
55983
|
*/
|
|
55944
55984
|
readonly supportedRefreshModes: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
55945
55985
|
/**
|
|
@@ -55949,6 +55989,8 @@ declare namespace Excel {
|
|
|
55949
55989
|
*
|
|
55950
55990
|
* @remarks
|
|
55951
55991
|
* [Api set: ExcelApi 1.19]
|
|
55992
|
+
*
|
|
55993
|
+
* This method isn't supported in Excel on the web.
|
|
55952
55994
|
*/
|
|
55953
55995
|
delete(): void;
|
|
55954
55996
|
/**
|
|
@@ -55957,6 +55999,8 @@ declare namespace Excel {
|
|
|
55957
55999
|
*
|
|
55958
56000
|
* @remarks
|
|
55959
56001
|
* [Api set: ExcelApi 1.19]
|
|
56002
|
+
*
|
|
56003
|
+
* This method isn't supported in Excel on the web.
|
|
55960
56004
|
*/
|
|
55961
56005
|
refresh(): void;
|
|
55962
56006
|
/**
|
|
@@ -55991,6 +56035,8 @@ declare namespace Excel {
|
|
|
55991
56035
|
*
|
|
55992
56036
|
* @remarks
|
|
55993
56037
|
* [Api set: ExcelApi 1.19]
|
|
56038
|
+
*
|
|
56039
|
+
* This interface isn't supported in Excel on the web.
|
|
55994
56040
|
*/
|
|
55995
56041
|
interface LinkedEntityDataDomainAddedEventArgs {
|
|
55996
56042
|
/**
|
|
@@ -55999,6 +56045,8 @@ declare namespace Excel {
|
|
|
55999
56045
|
*
|
|
56000
56046
|
* @remarks
|
|
56001
56047
|
* [Api set: ExcelApi 1.19]
|
|
56048
|
+
*
|
|
56049
|
+
* This property isn't supported in Excel on the web.
|
|
56002
56050
|
*/
|
|
56003
56051
|
id?: string;
|
|
56004
56052
|
/**
|
|
@@ -56006,6 +56054,8 @@ declare namespace Excel {
|
|
|
56006
56054
|
*
|
|
56007
56055
|
* @remarks
|
|
56008
56056
|
* [Api set: ExcelApi 1.19]
|
|
56057
|
+
*
|
|
56058
|
+
* This property isn't supported in Excel on the web.
|
|
56009
56059
|
*/
|
|
56010
56060
|
serviceId: number;
|
|
56011
56061
|
/**
|
|
@@ -56170,6 +56220,8 @@ declare namespace Excel {
|
|
|
56170
56220
|
*
|
|
56171
56221
|
* @remarks
|
|
56172
56222
|
* [Api set: ExcelApi 1.19]
|
|
56223
|
+
*
|
|
56224
|
+
* This interface isn't supported in Excel on the web.
|
|
56173
56225
|
*/
|
|
56174
56226
|
interface LinkedEntityDataDomainCreateOptions {
|
|
56175
56227
|
/**
|
|
@@ -56177,6 +56229,8 @@ declare namespace Excel {
|
|
|
56177
56229
|
*
|
|
56178
56230
|
* @remarks
|
|
56179
56231
|
* [Api set: ExcelApi 1.19]
|
|
56232
|
+
*
|
|
56233
|
+
* This property isn't supported in Excel on the web.
|
|
56180
56234
|
*/
|
|
56181
56235
|
dataProvider: string;
|
|
56182
56236
|
/**
|
|
@@ -56185,6 +56239,8 @@ declare namespace Excel {
|
|
|
56185
56239
|
*
|
|
56186
56240
|
* @remarks
|
|
56187
56241
|
* [Api set: ExcelApi 1.19]
|
|
56242
|
+
*
|
|
56243
|
+
* This property isn't supported in Excel on the web.
|
|
56188
56244
|
*/
|
|
56189
56245
|
id: string;
|
|
56190
56246
|
/**
|
|
@@ -56193,6 +56249,8 @@ declare namespace Excel {
|
|
|
56193
56249
|
*
|
|
56194
56250
|
* @remarks
|
|
56195
56251
|
* [Api set: ExcelApi 1.19]
|
|
56252
|
+
*
|
|
56253
|
+
* This property isn't supported in Excel on the web.
|
|
56196
56254
|
*/
|
|
56197
56255
|
loadFunctionId: string;
|
|
56198
56256
|
/**
|
|
@@ -56201,6 +56259,8 @@ declare namespace Excel {
|
|
|
56201
56259
|
*
|
|
56202
56260
|
* @remarks
|
|
56203
56261
|
* [Api set: ExcelApi 1.19]
|
|
56262
|
+
*
|
|
56263
|
+
* This property isn't supported in Excel on the web.
|
|
56204
56264
|
*/
|
|
56205
56265
|
name: string;
|
|
56206
56266
|
/**
|
|
@@ -56210,6 +56270,8 @@ declare namespace Excel {
|
|
|
56210
56270
|
*
|
|
56211
56271
|
* @remarks
|
|
56212
56272
|
* [Api set: ExcelApi 1.19]
|
|
56273
|
+
*
|
|
56274
|
+
* This property isn't supported in Excel on the web.
|
|
56213
56275
|
*/
|
|
56214
56276
|
periodicRefreshInterval?: number;
|
|
56215
56277
|
/**
|
|
@@ -56221,6 +56283,8 @@ declare namespace Excel {
|
|
|
56221
56283
|
*
|
|
56222
56284
|
* @remarks
|
|
56223
56285
|
* [Api set: ExcelApi 1.19]
|
|
56286
|
+
*
|
|
56287
|
+
* This property isn't supported in Excel on the web.
|
|
56224
56288
|
*/
|
|
56225
56289
|
supportedRefreshModes?: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
56226
56290
|
}
|
|
@@ -56229,6 +56293,8 @@ declare namespace Excel {
|
|
|
56229
56293
|
*
|
|
56230
56294
|
* @remarks
|
|
56231
56295
|
* [Api set: ExcelApi 1.19]
|
|
56296
|
+
*
|
|
56297
|
+
* This interface isn't supported in Excel on the web.
|
|
56232
56298
|
*/
|
|
56233
56299
|
interface LinkedEntityDataDomainRefreshCompletedEventArgs {
|
|
56234
56300
|
/**
|
|
@@ -56236,6 +56302,8 @@ declare namespace Excel {
|
|
|
56236
56302
|
*
|
|
56237
56303
|
* @remarks
|
|
56238
56304
|
* [Api set: ExcelApi 1.19]
|
|
56305
|
+
*
|
|
56306
|
+
* This property isn't supported in Excel on the web.
|
|
56239
56307
|
*/
|
|
56240
56308
|
errors?: string[];
|
|
56241
56309
|
/**
|
|
@@ -56244,6 +56312,8 @@ declare namespace Excel {
|
|
|
56244
56312
|
*
|
|
56245
56313
|
* @remarks
|
|
56246
56314
|
* [Api set: ExcelApi 1.19]
|
|
56315
|
+
*
|
|
56316
|
+
* This property isn't supported in Excel on the web.
|
|
56247
56317
|
*/
|
|
56248
56318
|
id?: string;
|
|
56249
56319
|
/**
|
|
@@ -56251,6 +56321,8 @@ declare namespace Excel {
|
|
|
56251
56321
|
*
|
|
56252
56322
|
* @remarks
|
|
56253
56323
|
* [Api set: ExcelApi 1.19]
|
|
56324
|
+
*
|
|
56325
|
+
* This property isn't supported in Excel on the web.
|
|
56254
56326
|
*/
|
|
56255
56327
|
refreshed: boolean;
|
|
56256
56328
|
/**
|
|
@@ -56258,6 +56330,8 @@ declare namespace Excel {
|
|
|
56258
56330
|
*
|
|
56259
56331
|
* @remarks
|
|
56260
56332
|
* [Api set: ExcelApi 1.19]
|
|
56333
|
+
*
|
|
56334
|
+
* This property isn't supported in Excel on the web.
|
|
56261
56335
|
*/
|
|
56262
56336
|
serviceId: number;
|
|
56263
56337
|
/**
|
|
@@ -56265,6 +56339,8 @@ declare namespace Excel {
|
|
|
56265
56339
|
*
|
|
56266
56340
|
* @remarks
|
|
56267
56341
|
* [Api set: ExcelApi 1.19]
|
|
56342
|
+
*
|
|
56343
|
+
* This property isn't supported in Excel on the web.
|
|
56268
56344
|
*/
|
|
56269
56345
|
source: Excel.EventSource | "Local" | "Remote";
|
|
56270
56346
|
/**
|
|
@@ -56272,6 +56348,8 @@ declare namespace Excel {
|
|
|
56272
56348
|
*
|
|
56273
56349
|
* @remarks
|
|
56274
56350
|
* [Api set: ExcelApi 1.19]
|
|
56351
|
+
*
|
|
56352
|
+
* This property isn't supported in Excel on the web.
|
|
56275
56353
|
*/
|
|
56276
56354
|
type: "LinkedEntityDataDomainRefreshCompleted";
|
|
56277
56355
|
}
|
|
@@ -56316,6 +56394,8 @@ declare namespace Excel {
|
|
|
56316
56394
|
*
|
|
56317
56395
|
* @remarks
|
|
56318
56396
|
* [Api set: ExcelApi 1.19]
|
|
56397
|
+
*
|
|
56398
|
+
* This interface isn't supported in Excel on the web.
|
|
56319
56399
|
*/
|
|
56320
56400
|
interface LinkedEntityDataDomainRefreshModeChangedEventArgs {
|
|
56321
56401
|
/**
|
|
@@ -56324,6 +56404,8 @@ declare namespace Excel {
|
|
|
56324
56404
|
*
|
|
56325
56405
|
* @remarks
|
|
56326
56406
|
* [Api set: ExcelApi 1.19]
|
|
56407
|
+
*
|
|
56408
|
+
* This property isn't supported in Excel on the web.
|
|
56327
56409
|
*/
|
|
56328
56410
|
id?: string;
|
|
56329
56411
|
/**
|
|
@@ -56331,6 +56413,8 @@ declare namespace Excel {
|
|
|
56331
56413
|
*
|
|
56332
56414
|
* @remarks
|
|
56333
56415
|
* [Api set: ExcelApi 1.19]
|
|
56416
|
+
*
|
|
56417
|
+
* This property isn't supported in Excel on the web.
|
|
56334
56418
|
*/
|
|
56335
56419
|
refreshMode: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
56336
56420
|
/**
|
|
@@ -56338,6 +56422,8 @@ declare namespace Excel {
|
|
|
56338
56422
|
*
|
|
56339
56423
|
* @remarks
|
|
56340
56424
|
* [Api set: ExcelApi 1.19]
|
|
56425
|
+
*
|
|
56426
|
+
* This property isn't supported in Excel on the web.
|
|
56341
56427
|
*/
|
|
56342
56428
|
serviceId: number;
|
|
56343
56429
|
/**
|
|
@@ -56345,6 +56431,8 @@ declare namespace Excel {
|
|
|
56345
56431
|
*
|
|
56346
56432
|
* @remarks
|
|
56347
56433
|
* [Api set: ExcelApi 1.19]
|
|
56434
|
+
*
|
|
56435
|
+
* This property isn't supported in Excel on the web.
|
|
56348
56436
|
*/
|
|
56349
56437
|
source: Excel.EventSource | "Local" | "Remote";
|
|
56350
56438
|
/**
|
|
@@ -56352,6 +56440,8 @@ declare namespace Excel {
|
|
|
56352
56440
|
*
|
|
56353
56441
|
* @remarks
|
|
56354
56442
|
* [Api set: ExcelApi 1.19]
|
|
56443
|
+
*
|
|
56444
|
+
* This property isn't supported in Excel on the web.
|
|
56355
56445
|
*/
|
|
56356
56446
|
type: "LinkedEntityDataDomainRefreshModeChanged";
|
|
56357
56447
|
}
|
|
@@ -90658,6 +90748,8 @@ declare namespace Excel {
|
|
|
90658
90748
|
*
|
|
90659
90749
|
* @remarks
|
|
90660
90750
|
* [Api set: ExcelApi 1.19]
|
|
90751
|
+
*
|
|
90752
|
+
* This interface isn't supported in Excel on the web.
|
|
90661
90753
|
*/
|
|
90662
90754
|
interface LinkedEntityDataDomainLoadOptions {
|
|
90663
90755
|
/**
|
|
@@ -90670,6 +90762,8 @@ declare namespace Excel {
|
|
|
90670
90762
|
*
|
|
90671
90763
|
* @remarks
|
|
90672
90764
|
* [Api set: ExcelApi 1.19]
|
|
90765
|
+
*
|
|
90766
|
+
* This property isn't supported in Excel on the web.
|
|
90673
90767
|
*/
|
|
90674
90768
|
dataProvider?: boolean;
|
|
90675
90769
|
/**
|
|
@@ -90678,6 +90772,8 @@ declare namespace Excel {
|
|
|
90678
90772
|
*
|
|
90679
90773
|
* @remarks
|
|
90680
90774
|
* [Api set: ExcelApi 1.19]
|
|
90775
|
+
*
|
|
90776
|
+
* This property isn't supported in Excel on the web.
|
|
90681
90777
|
*/
|
|
90682
90778
|
id?: boolean;
|
|
90683
90779
|
/**
|
|
@@ -90686,6 +90782,8 @@ declare namespace Excel {
|
|
|
90686
90782
|
*
|
|
90687
90783
|
* @remarks
|
|
90688
90784
|
* [Api set: ExcelApi 1.19]
|
|
90785
|
+
*
|
|
90786
|
+
* This property isn't supported in Excel on the web.
|
|
90689
90787
|
*/
|
|
90690
90788
|
lastRefreshed?: boolean;
|
|
90691
90789
|
/**
|
|
@@ -90695,6 +90793,8 @@ declare namespace Excel {
|
|
|
90695
90793
|
*
|
|
90696
90794
|
* @remarks
|
|
90697
90795
|
* [Api set: ExcelApi 1.19]
|
|
90796
|
+
*
|
|
90797
|
+
* This property isn't supported in Excel on the web.
|
|
90698
90798
|
*/
|
|
90699
90799
|
loadFunctionId?: boolean;
|
|
90700
90800
|
/**
|
|
@@ -90703,6 +90803,8 @@ declare namespace Excel {
|
|
|
90703
90803
|
*
|
|
90704
90804
|
* @remarks
|
|
90705
90805
|
* [Api set: ExcelApi 1.19]
|
|
90806
|
+
*
|
|
90807
|
+
* This property isn't supported in Excel on the web.
|
|
90706
90808
|
*/
|
|
90707
90809
|
name?: boolean;
|
|
90708
90810
|
/**
|
|
@@ -90711,6 +90813,8 @@ declare namespace Excel {
|
|
|
90711
90813
|
*
|
|
90712
90814
|
* @remarks
|
|
90713
90815
|
* [Api set: ExcelApi 1.19]
|
|
90816
|
+
*
|
|
90817
|
+
* This property isn't supported in Excel on the web.
|
|
90714
90818
|
*/
|
|
90715
90819
|
periodicRefreshInterval?: boolean;
|
|
90716
90820
|
/**
|
|
@@ -90720,6 +90824,8 @@ declare namespace Excel {
|
|
|
90720
90824
|
*
|
|
90721
90825
|
* @remarks
|
|
90722
90826
|
* [Api set: ExcelApi 1.19]
|
|
90827
|
+
*
|
|
90828
|
+
* This property isn't supported in Excel on the web.
|
|
90723
90829
|
*/
|
|
90724
90830
|
refreshMode?: boolean;
|
|
90725
90831
|
/**
|
|
@@ -90729,6 +90835,8 @@ declare namespace Excel {
|
|
|
90729
90835
|
*
|
|
90730
90836
|
* @remarks
|
|
90731
90837
|
* [Api set: ExcelApi 1.19]
|
|
90838
|
+
*
|
|
90839
|
+
* This property isn't supported in Excel on the web.
|
|
90732
90840
|
*/
|
|
90733
90841
|
serviceId?: boolean;
|
|
90734
90842
|
/**
|
|
@@ -90737,6 +90845,8 @@ declare namespace Excel {
|
|
|
90737
90845
|
*
|
|
90738
90846
|
* @remarks
|
|
90739
90847
|
* [Api set: ExcelApi 1.19]
|
|
90848
|
+
*
|
|
90849
|
+
* This property isn't supported in Excel on the web.
|
|
90740
90850
|
*/
|
|
90741
90851
|
supportedRefreshModes?: boolean;
|
|
90742
90852
|
}
|
|
@@ -90746,6 +90856,8 @@ declare namespace Excel {
|
|
|
90746
90856
|
*
|
|
90747
90857
|
* @remarks
|
|
90748
90858
|
* [Api set: ExcelApi 1.19]
|
|
90859
|
+
*
|
|
90860
|
+
* This interface isn't supported in Excel on the web.
|
|
90749
90861
|
*/
|
|
90750
90862
|
interface LinkedEntityDataDomainCollectionLoadOptions {
|
|
90751
90863
|
/**
|
|
@@ -90758,6 +90870,8 @@ declare namespace Excel {
|
|
|
90758
90870
|
*
|
|
90759
90871
|
* @remarks
|
|
90760
90872
|
* [Api set: ExcelApi 1.19]
|
|
90873
|
+
*
|
|
90874
|
+
* This property isn't supported in Excel on the web.
|
|
90761
90875
|
*/
|
|
90762
90876
|
dataProvider?: boolean;
|
|
90763
90877
|
/**
|
|
@@ -90766,6 +90880,8 @@ declare namespace Excel {
|
|
|
90766
90880
|
*
|
|
90767
90881
|
* @remarks
|
|
90768
90882
|
* [Api set: ExcelApi 1.19]
|
|
90883
|
+
*
|
|
90884
|
+
* This property isn't supported in Excel on the web.
|
|
90769
90885
|
*/
|
|
90770
90886
|
id?: boolean;
|
|
90771
90887
|
/**
|
|
@@ -90774,6 +90890,8 @@ declare namespace Excel {
|
|
|
90774
90890
|
*
|
|
90775
90891
|
* @remarks
|
|
90776
90892
|
* [Api set: ExcelApi 1.19]
|
|
90893
|
+
*
|
|
90894
|
+
* This property isn't supported in Excel on the web.
|
|
90777
90895
|
*/
|
|
90778
90896
|
lastRefreshed?: boolean;
|
|
90779
90897
|
/**
|
|
@@ -90783,6 +90901,8 @@ declare namespace Excel {
|
|
|
90783
90901
|
*
|
|
90784
90902
|
* @remarks
|
|
90785
90903
|
* [Api set: ExcelApi 1.19]
|
|
90904
|
+
*
|
|
90905
|
+
* This property isn't supported in Excel on the web.
|
|
90786
90906
|
*/
|
|
90787
90907
|
loadFunctionId?: boolean;
|
|
90788
90908
|
/**
|
|
@@ -90791,6 +90911,8 @@ declare namespace Excel {
|
|
|
90791
90911
|
*
|
|
90792
90912
|
* @remarks
|
|
90793
90913
|
* [Api set: ExcelApi 1.19]
|
|
90914
|
+
*
|
|
90915
|
+
* This property isn't supported in Excel on the web.
|
|
90794
90916
|
*/
|
|
90795
90917
|
name?: boolean;
|
|
90796
90918
|
/**
|
|
@@ -90799,6 +90921,8 @@ declare namespace Excel {
|
|
|
90799
90921
|
*
|
|
90800
90922
|
* @remarks
|
|
90801
90923
|
* [Api set: ExcelApi 1.19]
|
|
90924
|
+
*
|
|
90925
|
+
* This property isn't supported in Excel on the web.
|
|
90802
90926
|
*/
|
|
90803
90927
|
periodicRefreshInterval?: boolean;
|
|
90804
90928
|
/**
|
|
@@ -90808,6 +90932,8 @@ declare namespace Excel {
|
|
|
90808
90932
|
*
|
|
90809
90933
|
* @remarks
|
|
90810
90934
|
* [Api set: ExcelApi 1.19]
|
|
90935
|
+
*
|
|
90936
|
+
* This property isn't supported in Excel on the web.
|
|
90811
90937
|
*/
|
|
90812
90938
|
refreshMode?: boolean;
|
|
90813
90939
|
/**
|
|
@@ -90817,6 +90943,8 @@ declare namespace Excel {
|
|
|
90817
90943
|
*
|
|
90818
90944
|
* @remarks
|
|
90819
90945
|
* [Api set: ExcelApi 1.19]
|
|
90946
|
+
*
|
|
90947
|
+
* This property isn't supported in Excel on the web.
|
|
90820
90948
|
*/
|
|
90821
90949
|
serviceId?: boolean;
|
|
90822
90950
|
/**
|
|
@@ -90825,6 +90953,8 @@ declare namespace Excel {
|
|
|
90825
90953
|
*
|
|
90826
90954
|
* @remarks
|
|
90827
90955
|
* [Api set: ExcelApi 1.19]
|
|
90956
|
+
*
|
|
90957
|
+
* This property isn't supported in Excel on the web.
|
|
90828
90958
|
*/
|
|
90829
90959
|
supportedRefreshModes?: boolean;
|
|
90830
90960
|
}
|
|
@@ -131472,6 +131602,8 @@ declare namespace PowerPoint {
|
|
|
131472
131602
|
*
|
|
131473
131603
|
* @remarks
|
|
131474
131604
|
* [Api set: PowerPointApi 1.8]
|
|
131605
|
+
*
|
|
131606
|
+
* This method is optimized to export a single slide. Exporting multiple slides can impact performance.
|
|
131475
131607
|
*/
|
|
131476
131608
|
exportAsBase64(): OfficeExtension.ClientResult<string>;
|
|
131477
131609
|
/**
|
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.525",
|
|
4
4
|
"description": "TypeScript definitions for office-js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
48
|
"peerDependencies": {},
|
|
49
|
-
"typesPublisherContentHash": "
|
|
49
|
+
"typesPublisherContentHash": "5492870d43741b572176d5a548036216f82de36b560569162f74004f0fda8864",
|
|
50
50
|
"typeScriptVersion": "5.2"
|
|
51
51
|
}
|