@types/office-js 1.0.523 → 1.0.524
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 +136 -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: Thu, 07 Aug 2025
|
|
11
|
+
* Last updated: Thu, 07 Aug 2025 17:39:00 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -21938,9 +21938,8 @@ declare namespace Office {
|
|
|
21938
21938
|
* - 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
21939
|
* 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
21940
|
*
|
|
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}.
|
|
21941
|
+
* - 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
|
|
21942
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
21944
21943
|
*
|
|
21945
21944
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
21946
21945
|
*
|
|
@@ -21978,9 +21977,8 @@ declare namespace Office {
|
|
|
21978
21977
|
* - 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
21978
|
* 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
21979
|
*
|
|
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}.
|
|
21980
|
+
* - 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
|
|
21981
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
21984
21982
|
*
|
|
21985
21983
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
21986
21984
|
*
|
|
@@ -22042,6 +22040,8 @@ declare namespace Office {
|
|
|
22042
22040
|
* 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
22041
|
* 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
22042
|
*
|
|
22043
|
+
* 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.
|
|
22044
|
+
*
|
|
22045
22045
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
22046
22046
|
* `asyncContext`: Developers can provide any object they wish to access in the callback function.
|
|
22047
22047
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
@@ -22091,6 +22091,8 @@ declare namespace Office {
|
|
|
22091
22091
|
* 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
22092
|
* 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
22093
|
*
|
|
22094
|
+
* 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.
|
|
22095
|
+
*
|
|
22094
22096
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
22095
22097
|
* of type `Office.AsyncResult`. The `asyncResult.value` property of the result is an array of
|
|
22096
22098
|
* {@link Office.EmailAddressDetails | EmailAddressDetails} objects.
|
|
@@ -22117,9 +22119,8 @@ declare namespace Office {
|
|
|
22117
22119
|
* - 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
22120
|
* 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
22121
|
*
|
|
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}.
|
|
22122
|
+
* - 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
|
|
22123
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22123
22124
|
*
|
|
22124
22125
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
22125
22126
|
*
|
|
@@ -22160,9 +22161,8 @@ declare namespace Office {
|
|
|
22160
22161
|
* - 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
22162
|
* 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
22163
|
*
|
|
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}.
|
|
22164
|
+
* - 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
|
|
22165
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22166
22166
|
*
|
|
22167
22167
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
22168
22168
|
*
|
|
@@ -30617,6 +30617,8 @@ declare namespace Excel {
|
|
|
30617
30617
|
*
|
|
30618
30618
|
* @remarks
|
|
30619
30619
|
* [Api set: ExcelApi 1.19]
|
|
30620
|
+
*
|
|
30621
|
+
* This interface isn't supported in Excel on the web.
|
|
30620
30622
|
*/
|
|
30621
30623
|
interface LinkedEntityLoadServiceRequest {
|
|
30622
30624
|
/**
|
|
@@ -30624,6 +30626,8 @@ declare namespace Excel {
|
|
|
30624
30626
|
*
|
|
30625
30627
|
* @remarks
|
|
30626
30628
|
* [Api set: ExcelApi 1.19]
|
|
30629
|
+
*
|
|
30630
|
+
* This property isn't supported in Excel on the web.
|
|
30627
30631
|
*/
|
|
30628
30632
|
domainId: string;
|
|
30629
30633
|
/**
|
|
@@ -30631,6 +30635,8 @@ declare namespace Excel {
|
|
|
30631
30635
|
*
|
|
30632
30636
|
* @remarks
|
|
30633
30637
|
* [Api set: ExcelApi 1.19]
|
|
30638
|
+
*
|
|
30639
|
+
* This property isn't supported in Excel on the web.
|
|
30634
30640
|
*/
|
|
30635
30641
|
entities: LinkedEntityIdCulture[];
|
|
30636
30642
|
}
|
|
@@ -30690,6 +30696,8 @@ declare namespace Excel {
|
|
|
30690
30696
|
*
|
|
30691
30697
|
* @remarks
|
|
30692
30698
|
* [Api set: ExcelApi 1.19]
|
|
30699
|
+
*
|
|
30700
|
+
* This interface isn't supported in Excel on the web.
|
|
30693
30701
|
*/
|
|
30694
30702
|
interface LinkedEntityIdCulture {
|
|
30695
30703
|
/**
|
|
@@ -30697,6 +30705,8 @@ declare namespace Excel {
|
|
|
30697
30705
|
*
|
|
30698
30706
|
* @remarks
|
|
30699
30707
|
* [Api set: ExcelApi 1.19]
|
|
30708
|
+
*
|
|
30709
|
+
* This property isn't supported in Excel on the web.
|
|
30700
30710
|
*/
|
|
30701
30711
|
entityId: string;
|
|
30702
30712
|
/**
|
|
@@ -30704,6 +30714,8 @@ declare namespace Excel {
|
|
|
30704
30714
|
*
|
|
30705
30715
|
* @remarks
|
|
30706
30716
|
* [Api set: ExcelApi 1.19]
|
|
30717
|
+
*
|
|
30718
|
+
* This property isn't supported in Excel on the web.
|
|
30707
30719
|
*/
|
|
30708
30720
|
culture: string;
|
|
30709
30721
|
}
|
|
@@ -55863,6 +55875,8 @@ declare namespace Excel {
|
|
|
55863
55875
|
*
|
|
55864
55876
|
* @remarks
|
|
55865
55877
|
* [Api set: ExcelApi 1.19]
|
|
55878
|
+
*
|
|
55879
|
+
* This class isn't supported in Excel on the web.
|
|
55866
55880
|
*/
|
|
55867
55881
|
class LinkedEntityDataDomain extends OfficeExtension.ClientObject {
|
|
55868
55882
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -55873,6 +55887,8 @@ declare namespace Excel {
|
|
|
55873
55887
|
*
|
|
55874
55888
|
* @remarks
|
|
55875
55889
|
* [Api set: ExcelApi 1.19]
|
|
55890
|
+
*
|
|
55891
|
+
* This property isn't supported in Excel on the web.
|
|
55876
55892
|
*/
|
|
55877
55893
|
readonly dataProvider: string;
|
|
55878
55894
|
/**
|
|
@@ -55881,6 +55897,8 @@ declare namespace Excel {
|
|
|
55881
55897
|
*
|
|
55882
55898
|
* @remarks
|
|
55883
55899
|
* [Api set: ExcelApi 1.19]
|
|
55900
|
+
*
|
|
55901
|
+
* This property isn't supported in Excel on the web.
|
|
55884
55902
|
*/
|
|
55885
55903
|
readonly id: string;
|
|
55886
55904
|
/**
|
|
@@ -55889,6 +55907,8 @@ declare namespace Excel {
|
|
|
55889
55907
|
*
|
|
55890
55908
|
* @remarks
|
|
55891
55909
|
* [Api set: ExcelApi 1.19]
|
|
55910
|
+
*
|
|
55911
|
+
* This property isn't supported in Excel on the web.
|
|
55892
55912
|
*/
|
|
55893
55913
|
readonly lastRefreshed: Date;
|
|
55894
55914
|
/**
|
|
@@ -55898,6 +55918,8 @@ declare namespace Excel {
|
|
|
55898
55918
|
*
|
|
55899
55919
|
* @remarks
|
|
55900
55920
|
* [Api set: ExcelApi 1.19]
|
|
55921
|
+
*
|
|
55922
|
+
* This property isn't supported in Excel on the web.
|
|
55901
55923
|
*/
|
|
55902
55924
|
readonly loadFunctionId: string;
|
|
55903
55925
|
/**
|
|
@@ -55906,6 +55928,8 @@ declare namespace Excel {
|
|
|
55906
55928
|
*
|
|
55907
55929
|
* @remarks
|
|
55908
55930
|
* [Api set: ExcelApi 1.19]
|
|
55931
|
+
*
|
|
55932
|
+
* This property isn't supported in Excel on the web.
|
|
55909
55933
|
*/
|
|
55910
55934
|
readonly name: string;
|
|
55911
55935
|
/**
|
|
@@ -55914,6 +55938,8 @@ declare namespace Excel {
|
|
|
55914
55938
|
*
|
|
55915
55939
|
* @remarks
|
|
55916
55940
|
* [Api set: ExcelApi 1.19]
|
|
55941
|
+
*
|
|
55942
|
+
* This property isn't supported in Excel on the web.
|
|
55917
55943
|
*/
|
|
55918
55944
|
readonly periodicRefreshInterval: number;
|
|
55919
55945
|
/**
|
|
@@ -55923,6 +55949,8 @@ declare namespace Excel {
|
|
|
55923
55949
|
*
|
|
55924
55950
|
* @remarks
|
|
55925
55951
|
* [Api set: ExcelApi 1.19]
|
|
55952
|
+
*
|
|
55953
|
+
* This property isn't supported in Excel on the web.
|
|
55926
55954
|
*/
|
|
55927
55955
|
refreshMode: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
55928
55956
|
/**
|
|
@@ -55932,6 +55960,8 @@ declare namespace Excel {
|
|
|
55932
55960
|
*
|
|
55933
55961
|
* @remarks
|
|
55934
55962
|
* [Api set: ExcelApi 1.19]
|
|
55963
|
+
*
|
|
55964
|
+
* This property isn't supported in Excel on the web.
|
|
55935
55965
|
*/
|
|
55936
55966
|
readonly serviceId: number;
|
|
55937
55967
|
/**
|
|
@@ -55940,6 +55970,8 @@ declare namespace Excel {
|
|
|
55940
55970
|
*
|
|
55941
55971
|
* @remarks
|
|
55942
55972
|
* [Api set: ExcelApi 1.19]
|
|
55973
|
+
*
|
|
55974
|
+
* This property isn't supported in Excel on the web.
|
|
55943
55975
|
*/
|
|
55944
55976
|
readonly supportedRefreshModes: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
55945
55977
|
/**
|
|
@@ -55949,6 +55981,8 @@ declare namespace Excel {
|
|
|
55949
55981
|
*
|
|
55950
55982
|
* @remarks
|
|
55951
55983
|
* [Api set: ExcelApi 1.19]
|
|
55984
|
+
*
|
|
55985
|
+
* This method isn't supported in Excel on the web.
|
|
55952
55986
|
*/
|
|
55953
55987
|
delete(): void;
|
|
55954
55988
|
/**
|
|
@@ -55957,6 +55991,8 @@ declare namespace Excel {
|
|
|
55957
55991
|
*
|
|
55958
55992
|
* @remarks
|
|
55959
55993
|
* [Api set: ExcelApi 1.19]
|
|
55994
|
+
*
|
|
55995
|
+
* This method isn't supported in Excel on the web.
|
|
55960
55996
|
*/
|
|
55961
55997
|
refresh(): void;
|
|
55962
55998
|
/**
|
|
@@ -55991,6 +56027,8 @@ declare namespace Excel {
|
|
|
55991
56027
|
*
|
|
55992
56028
|
* @remarks
|
|
55993
56029
|
* [Api set: ExcelApi 1.19]
|
|
56030
|
+
*
|
|
56031
|
+
* This interface isn't supported in Excel on the web.
|
|
55994
56032
|
*/
|
|
55995
56033
|
interface LinkedEntityDataDomainAddedEventArgs {
|
|
55996
56034
|
/**
|
|
@@ -55999,6 +56037,8 @@ declare namespace Excel {
|
|
|
55999
56037
|
*
|
|
56000
56038
|
* @remarks
|
|
56001
56039
|
* [Api set: ExcelApi 1.19]
|
|
56040
|
+
*
|
|
56041
|
+
* This property isn't supported in Excel on the web.
|
|
56002
56042
|
*/
|
|
56003
56043
|
id?: string;
|
|
56004
56044
|
/**
|
|
@@ -56006,6 +56046,8 @@ declare namespace Excel {
|
|
|
56006
56046
|
*
|
|
56007
56047
|
* @remarks
|
|
56008
56048
|
* [Api set: ExcelApi 1.19]
|
|
56049
|
+
*
|
|
56050
|
+
* This property isn't supported in Excel on the web.
|
|
56009
56051
|
*/
|
|
56010
56052
|
serviceId: number;
|
|
56011
56053
|
/**
|
|
@@ -56170,6 +56212,8 @@ declare namespace Excel {
|
|
|
56170
56212
|
*
|
|
56171
56213
|
* @remarks
|
|
56172
56214
|
* [Api set: ExcelApi 1.19]
|
|
56215
|
+
*
|
|
56216
|
+
* This interface isn't supported in Excel on the web.
|
|
56173
56217
|
*/
|
|
56174
56218
|
interface LinkedEntityDataDomainCreateOptions {
|
|
56175
56219
|
/**
|
|
@@ -56177,6 +56221,8 @@ declare namespace Excel {
|
|
|
56177
56221
|
*
|
|
56178
56222
|
* @remarks
|
|
56179
56223
|
* [Api set: ExcelApi 1.19]
|
|
56224
|
+
*
|
|
56225
|
+
* This property isn't supported in Excel on the web.
|
|
56180
56226
|
*/
|
|
56181
56227
|
dataProvider: string;
|
|
56182
56228
|
/**
|
|
@@ -56185,6 +56231,8 @@ declare namespace Excel {
|
|
|
56185
56231
|
*
|
|
56186
56232
|
* @remarks
|
|
56187
56233
|
* [Api set: ExcelApi 1.19]
|
|
56234
|
+
*
|
|
56235
|
+
* This property isn't supported in Excel on the web.
|
|
56188
56236
|
*/
|
|
56189
56237
|
id: string;
|
|
56190
56238
|
/**
|
|
@@ -56193,6 +56241,8 @@ declare namespace Excel {
|
|
|
56193
56241
|
*
|
|
56194
56242
|
* @remarks
|
|
56195
56243
|
* [Api set: ExcelApi 1.19]
|
|
56244
|
+
*
|
|
56245
|
+
* This property isn't supported in Excel on the web.
|
|
56196
56246
|
*/
|
|
56197
56247
|
loadFunctionId: string;
|
|
56198
56248
|
/**
|
|
@@ -56201,6 +56251,8 @@ declare namespace Excel {
|
|
|
56201
56251
|
*
|
|
56202
56252
|
* @remarks
|
|
56203
56253
|
* [Api set: ExcelApi 1.19]
|
|
56254
|
+
*
|
|
56255
|
+
* This property isn't supported in Excel on the web.
|
|
56204
56256
|
*/
|
|
56205
56257
|
name: string;
|
|
56206
56258
|
/**
|
|
@@ -56210,6 +56262,8 @@ declare namespace Excel {
|
|
|
56210
56262
|
*
|
|
56211
56263
|
* @remarks
|
|
56212
56264
|
* [Api set: ExcelApi 1.19]
|
|
56265
|
+
*
|
|
56266
|
+
* This property isn't supported in Excel on the web.
|
|
56213
56267
|
*/
|
|
56214
56268
|
periodicRefreshInterval?: number;
|
|
56215
56269
|
/**
|
|
@@ -56221,6 +56275,8 @@ declare namespace Excel {
|
|
|
56221
56275
|
*
|
|
56222
56276
|
* @remarks
|
|
56223
56277
|
* [Api set: ExcelApi 1.19]
|
|
56278
|
+
*
|
|
56279
|
+
* This property isn't supported in Excel on the web.
|
|
56224
56280
|
*/
|
|
56225
56281
|
supportedRefreshModes?: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
56226
56282
|
}
|
|
@@ -56229,6 +56285,8 @@ declare namespace Excel {
|
|
|
56229
56285
|
*
|
|
56230
56286
|
* @remarks
|
|
56231
56287
|
* [Api set: ExcelApi 1.19]
|
|
56288
|
+
*
|
|
56289
|
+
* This interface isn't supported in Excel on the web.
|
|
56232
56290
|
*/
|
|
56233
56291
|
interface LinkedEntityDataDomainRefreshCompletedEventArgs {
|
|
56234
56292
|
/**
|
|
@@ -56236,6 +56294,8 @@ declare namespace Excel {
|
|
|
56236
56294
|
*
|
|
56237
56295
|
* @remarks
|
|
56238
56296
|
* [Api set: ExcelApi 1.19]
|
|
56297
|
+
*
|
|
56298
|
+
* This property isn't supported in Excel on the web.
|
|
56239
56299
|
*/
|
|
56240
56300
|
errors?: string[];
|
|
56241
56301
|
/**
|
|
@@ -56244,6 +56304,8 @@ declare namespace Excel {
|
|
|
56244
56304
|
*
|
|
56245
56305
|
* @remarks
|
|
56246
56306
|
* [Api set: ExcelApi 1.19]
|
|
56307
|
+
*
|
|
56308
|
+
* This property isn't supported in Excel on the web.
|
|
56247
56309
|
*/
|
|
56248
56310
|
id?: string;
|
|
56249
56311
|
/**
|
|
@@ -56251,6 +56313,8 @@ declare namespace Excel {
|
|
|
56251
56313
|
*
|
|
56252
56314
|
* @remarks
|
|
56253
56315
|
* [Api set: ExcelApi 1.19]
|
|
56316
|
+
*
|
|
56317
|
+
* This property isn't supported in Excel on the web.
|
|
56254
56318
|
*/
|
|
56255
56319
|
refreshed: boolean;
|
|
56256
56320
|
/**
|
|
@@ -56258,6 +56322,8 @@ declare namespace Excel {
|
|
|
56258
56322
|
*
|
|
56259
56323
|
* @remarks
|
|
56260
56324
|
* [Api set: ExcelApi 1.19]
|
|
56325
|
+
*
|
|
56326
|
+
* This property isn't supported in Excel on the web.
|
|
56261
56327
|
*/
|
|
56262
56328
|
serviceId: number;
|
|
56263
56329
|
/**
|
|
@@ -56265,6 +56331,8 @@ declare namespace Excel {
|
|
|
56265
56331
|
*
|
|
56266
56332
|
* @remarks
|
|
56267
56333
|
* [Api set: ExcelApi 1.19]
|
|
56334
|
+
*
|
|
56335
|
+
* This property isn't supported in Excel on the web.
|
|
56268
56336
|
*/
|
|
56269
56337
|
source: Excel.EventSource | "Local" | "Remote";
|
|
56270
56338
|
/**
|
|
@@ -56272,6 +56340,8 @@ declare namespace Excel {
|
|
|
56272
56340
|
*
|
|
56273
56341
|
* @remarks
|
|
56274
56342
|
* [Api set: ExcelApi 1.19]
|
|
56343
|
+
*
|
|
56344
|
+
* This property isn't supported in Excel on the web.
|
|
56275
56345
|
*/
|
|
56276
56346
|
type: "LinkedEntityDataDomainRefreshCompleted";
|
|
56277
56347
|
}
|
|
@@ -56316,6 +56386,8 @@ declare namespace Excel {
|
|
|
56316
56386
|
*
|
|
56317
56387
|
* @remarks
|
|
56318
56388
|
* [Api set: ExcelApi 1.19]
|
|
56389
|
+
*
|
|
56390
|
+
* This interface isn't supported in Excel on the web.
|
|
56319
56391
|
*/
|
|
56320
56392
|
interface LinkedEntityDataDomainRefreshModeChangedEventArgs {
|
|
56321
56393
|
/**
|
|
@@ -56324,6 +56396,8 @@ declare namespace Excel {
|
|
|
56324
56396
|
*
|
|
56325
56397
|
* @remarks
|
|
56326
56398
|
* [Api set: ExcelApi 1.19]
|
|
56399
|
+
*
|
|
56400
|
+
* This property isn't supported in Excel on the web.
|
|
56327
56401
|
*/
|
|
56328
56402
|
id?: string;
|
|
56329
56403
|
/**
|
|
@@ -56331,6 +56405,8 @@ declare namespace Excel {
|
|
|
56331
56405
|
*
|
|
56332
56406
|
* @remarks
|
|
56333
56407
|
* [Api set: ExcelApi 1.19]
|
|
56408
|
+
*
|
|
56409
|
+
* This property isn't supported in Excel on the web.
|
|
56334
56410
|
*/
|
|
56335
56411
|
refreshMode: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
56336
56412
|
/**
|
|
@@ -56338,6 +56414,8 @@ declare namespace Excel {
|
|
|
56338
56414
|
*
|
|
56339
56415
|
* @remarks
|
|
56340
56416
|
* [Api set: ExcelApi 1.19]
|
|
56417
|
+
*
|
|
56418
|
+
* This property isn't supported in Excel on the web.
|
|
56341
56419
|
*/
|
|
56342
56420
|
serviceId: number;
|
|
56343
56421
|
/**
|
|
@@ -56345,6 +56423,8 @@ declare namespace Excel {
|
|
|
56345
56423
|
*
|
|
56346
56424
|
* @remarks
|
|
56347
56425
|
* [Api set: ExcelApi 1.19]
|
|
56426
|
+
*
|
|
56427
|
+
* This property isn't supported in Excel on the web.
|
|
56348
56428
|
*/
|
|
56349
56429
|
source: Excel.EventSource | "Local" | "Remote";
|
|
56350
56430
|
/**
|
|
@@ -56352,6 +56432,8 @@ declare namespace Excel {
|
|
|
56352
56432
|
*
|
|
56353
56433
|
* @remarks
|
|
56354
56434
|
* [Api set: ExcelApi 1.19]
|
|
56435
|
+
*
|
|
56436
|
+
* This property isn't supported in Excel on the web.
|
|
56355
56437
|
*/
|
|
56356
56438
|
type: "LinkedEntityDataDomainRefreshModeChanged";
|
|
56357
56439
|
}
|
|
@@ -90658,6 +90740,8 @@ declare namespace Excel {
|
|
|
90658
90740
|
*
|
|
90659
90741
|
* @remarks
|
|
90660
90742
|
* [Api set: ExcelApi 1.19]
|
|
90743
|
+
*
|
|
90744
|
+
* This interface isn't supported in Excel on the web.
|
|
90661
90745
|
*/
|
|
90662
90746
|
interface LinkedEntityDataDomainLoadOptions {
|
|
90663
90747
|
/**
|
|
@@ -90670,6 +90754,8 @@ declare namespace Excel {
|
|
|
90670
90754
|
*
|
|
90671
90755
|
* @remarks
|
|
90672
90756
|
* [Api set: ExcelApi 1.19]
|
|
90757
|
+
*
|
|
90758
|
+
* This property isn't supported in Excel on the web.
|
|
90673
90759
|
*/
|
|
90674
90760
|
dataProvider?: boolean;
|
|
90675
90761
|
/**
|
|
@@ -90678,6 +90764,8 @@ declare namespace Excel {
|
|
|
90678
90764
|
*
|
|
90679
90765
|
* @remarks
|
|
90680
90766
|
* [Api set: ExcelApi 1.19]
|
|
90767
|
+
*
|
|
90768
|
+
* This property isn't supported in Excel on the web.
|
|
90681
90769
|
*/
|
|
90682
90770
|
id?: boolean;
|
|
90683
90771
|
/**
|
|
@@ -90686,6 +90774,8 @@ declare namespace Excel {
|
|
|
90686
90774
|
*
|
|
90687
90775
|
* @remarks
|
|
90688
90776
|
* [Api set: ExcelApi 1.19]
|
|
90777
|
+
*
|
|
90778
|
+
* This property isn't supported in Excel on the web.
|
|
90689
90779
|
*/
|
|
90690
90780
|
lastRefreshed?: boolean;
|
|
90691
90781
|
/**
|
|
@@ -90695,6 +90785,8 @@ declare namespace Excel {
|
|
|
90695
90785
|
*
|
|
90696
90786
|
* @remarks
|
|
90697
90787
|
* [Api set: ExcelApi 1.19]
|
|
90788
|
+
*
|
|
90789
|
+
* This property isn't supported in Excel on the web.
|
|
90698
90790
|
*/
|
|
90699
90791
|
loadFunctionId?: boolean;
|
|
90700
90792
|
/**
|
|
@@ -90703,6 +90795,8 @@ declare namespace Excel {
|
|
|
90703
90795
|
*
|
|
90704
90796
|
* @remarks
|
|
90705
90797
|
* [Api set: ExcelApi 1.19]
|
|
90798
|
+
*
|
|
90799
|
+
* This property isn't supported in Excel on the web.
|
|
90706
90800
|
*/
|
|
90707
90801
|
name?: boolean;
|
|
90708
90802
|
/**
|
|
@@ -90711,6 +90805,8 @@ declare namespace Excel {
|
|
|
90711
90805
|
*
|
|
90712
90806
|
* @remarks
|
|
90713
90807
|
* [Api set: ExcelApi 1.19]
|
|
90808
|
+
*
|
|
90809
|
+
* This property isn't supported in Excel on the web.
|
|
90714
90810
|
*/
|
|
90715
90811
|
periodicRefreshInterval?: boolean;
|
|
90716
90812
|
/**
|
|
@@ -90720,6 +90816,8 @@ declare namespace Excel {
|
|
|
90720
90816
|
*
|
|
90721
90817
|
* @remarks
|
|
90722
90818
|
* [Api set: ExcelApi 1.19]
|
|
90819
|
+
*
|
|
90820
|
+
* This property isn't supported in Excel on the web.
|
|
90723
90821
|
*/
|
|
90724
90822
|
refreshMode?: boolean;
|
|
90725
90823
|
/**
|
|
@@ -90729,6 +90827,8 @@ declare namespace Excel {
|
|
|
90729
90827
|
*
|
|
90730
90828
|
* @remarks
|
|
90731
90829
|
* [Api set: ExcelApi 1.19]
|
|
90830
|
+
*
|
|
90831
|
+
* This property isn't supported in Excel on the web.
|
|
90732
90832
|
*/
|
|
90733
90833
|
serviceId?: boolean;
|
|
90734
90834
|
/**
|
|
@@ -90737,6 +90837,8 @@ declare namespace Excel {
|
|
|
90737
90837
|
*
|
|
90738
90838
|
* @remarks
|
|
90739
90839
|
* [Api set: ExcelApi 1.19]
|
|
90840
|
+
*
|
|
90841
|
+
* This property isn't supported in Excel on the web.
|
|
90740
90842
|
*/
|
|
90741
90843
|
supportedRefreshModes?: boolean;
|
|
90742
90844
|
}
|
|
@@ -90746,6 +90848,8 @@ declare namespace Excel {
|
|
|
90746
90848
|
*
|
|
90747
90849
|
* @remarks
|
|
90748
90850
|
* [Api set: ExcelApi 1.19]
|
|
90851
|
+
*
|
|
90852
|
+
* This interface isn't supported in Excel on the web.
|
|
90749
90853
|
*/
|
|
90750
90854
|
interface LinkedEntityDataDomainCollectionLoadOptions {
|
|
90751
90855
|
/**
|
|
@@ -90758,6 +90862,8 @@ declare namespace Excel {
|
|
|
90758
90862
|
*
|
|
90759
90863
|
* @remarks
|
|
90760
90864
|
* [Api set: ExcelApi 1.19]
|
|
90865
|
+
*
|
|
90866
|
+
* This property isn't supported in Excel on the web.
|
|
90761
90867
|
*/
|
|
90762
90868
|
dataProvider?: boolean;
|
|
90763
90869
|
/**
|
|
@@ -90766,6 +90872,8 @@ declare namespace Excel {
|
|
|
90766
90872
|
*
|
|
90767
90873
|
* @remarks
|
|
90768
90874
|
* [Api set: ExcelApi 1.19]
|
|
90875
|
+
*
|
|
90876
|
+
* This property isn't supported in Excel on the web.
|
|
90769
90877
|
*/
|
|
90770
90878
|
id?: boolean;
|
|
90771
90879
|
/**
|
|
@@ -90774,6 +90882,8 @@ declare namespace Excel {
|
|
|
90774
90882
|
*
|
|
90775
90883
|
* @remarks
|
|
90776
90884
|
* [Api set: ExcelApi 1.19]
|
|
90885
|
+
*
|
|
90886
|
+
* This property isn't supported in Excel on the web.
|
|
90777
90887
|
*/
|
|
90778
90888
|
lastRefreshed?: boolean;
|
|
90779
90889
|
/**
|
|
@@ -90783,6 +90893,8 @@ declare namespace Excel {
|
|
|
90783
90893
|
*
|
|
90784
90894
|
* @remarks
|
|
90785
90895
|
* [Api set: ExcelApi 1.19]
|
|
90896
|
+
*
|
|
90897
|
+
* This property isn't supported in Excel on the web.
|
|
90786
90898
|
*/
|
|
90787
90899
|
loadFunctionId?: boolean;
|
|
90788
90900
|
/**
|
|
@@ -90791,6 +90903,8 @@ declare namespace Excel {
|
|
|
90791
90903
|
*
|
|
90792
90904
|
* @remarks
|
|
90793
90905
|
* [Api set: ExcelApi 1.19]
|
|
90906
|
+
*
|
|
90907
|
+
* This property isn't supported in Excel on the web.
|
|
90794
90908
|
*/
|
|
90795
90909
|
name?: boolean;
|
|
90796
90910
|
/**
|
|
@@ -90799,6 +90913,8 @@ declare namespace Excel {
|
|
|
90799
90913
|
*
|
|
90800
90914
|
* @remarks
|
|
90801
90915
|
* [Api set: ExcelApi 1.19]
|
|
90916
|
+
*
|
|
90917
|
+
* This property isn't supported in Excel on the web.
|
|
90802
90918
|
*/
|
|
90803
90919
|
periodicRefreshInterval?: boolean;
|
|
90804
90920
|
/**
|
|
@@ -90808,6 +90924,8 @@ declare namespace Excel {
|
|
|
90808
90924
|
*
|
|
90809
90925
|
* @remarks
|
|
90810
90926
|
* [Api set: ExcelApi 1.19]
|
|
90927
|
+
*
|
|
90928
|
+
* This property isn't supported in Excel on the web.
|
|
90811
90929
|
*/
|
|
90812
90930
|
refreshMode?: boolean;
|
|
90813
90931
|
/**
|
|
@@ -90817,6 +90935,8 @@ declare namespace Excel {
|
|
|
90817
90935
|
*
|
|
90818
90936
|
* @remarks
|
|
90819
90937
|
* [Api set: ExcelApi 1.19]
|
|
90938
|
+
*
|
|
90939
|
+
* This property isn't supported in Excel on the web.
|
|
90820
90940
|
*/
|
|
90821
90941
|
serviceId?: boolean;
|
|
90822
90942
|
/**
|
|
@@ -90825,6 +90945,8 @@ declare namespace Excel {
|
|
|
90825
90945
|
*
|
|
90826
90946
|
* @remarks
|
|
90827
90947
|
* [Api set: ExcelApi 1.19]
|
|
90948
|
+
*
|
|
90949
|
+
* This property isn't supported in Excel on the web.
|
|
90828
90950
|
*/
|
|
90829
90951
|
supportedRefreshModes?: boolean;
|
|
90830
90952
|
}
|
|
@@ -131472,6 +131594,8 @@ declare namespace PowerPoint {
|
|
|
131472
131594
|
*
|
|
131473
131595
|
* @remarks
|
|
131474
131596
|
* [Api set: PowerPointApi 1.8]
|
|
131597
|
+
*
|
|
131598
|
+
* This method is optimized to export a single slide. Exporting multiple slides can impact performance.
|
|
131475
131599
|
*/
|
|
131476
131600
|
exportAsBase64(): OfficeExtension.ClientResult<string>;
|
|
131477
131601
|
/**
|
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.524",
|
|
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": "4a32b4dc23d4a5e684622ebd7e4daac949e43dc8d4c3aa3b65d91344ddc189b2",
|
|
50
50
|
"typeScriptVersion": "5.2"
|
|
51
51
|
}
|