@types/office-js-preview 1.0.621 → 1.0.622
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- office-js-preview/README.md +1 -1
- office-js-preview/index.d.ts +198 -12
- office-js-preview/package.json +2 -2
office-js-preview/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for office-js-preview (https://github.com
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: 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-preview/index.d.ts
CHANGED
|
@@ -22294,9 +22294,8 @@ declare namespace Office {
|
|
|
22294
22294
|
* - 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.
|
|
22295
22295
|
* 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.
|
|
22296
22296
|
*
|
|
22297
|
-
* - In Outlook on Android and on iOS, the `addAsync` method
|
|
22298
|
-
* supported
|
|
22299
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
22297
|
+
* - 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
|
|
22298
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22300
22299
|
*
|
|
22301
22300
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
22302
22301
|
*
|
|
@@ -22333,9 +22332,8 @@ declare namespace Office {
|
|
|
22333
22332
|
* - In Outlook on the web, on Windows, and on Mac (classic UI), you can have a maximum of 500 recipients in a target field.
|
|
22334
22333
|
* 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.
|
|
22335
22334
|
*
|
|
22336
|
-
* - In Outlook on Android and on iOS, the `addAsync` method
|
|
22337
|
-
* supported
|
|
22338
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
22335
|
+
* - 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
|
|
22336
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22339
22337
|
*
|
|
22340
22338
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
22341
22339
|
*
|
|
@@ -22397,6 +22395,8 @@ declare namespace Office {
|
|
|
22397
22395
|
* 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.
|
|
22398
22396
|
* To get the correct recipient types after switching accounts, you must first remove the existing recipients, then add them back to the mail item.
|
|
22399
22397
|
*
|
|
22398
|
+
* 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.
|
|
22399
|
+
*
|
|
22400
22400
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
22401
22401
|
* `asyncContext`: Developers can provide any object they wish to access in the callback function.
|
|
22402
22402
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
@@ -22446,6 +22446,8 @@ declare namespace Office {
|
|
|
22446
22446
|
* 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.
|
|
22447
22447
|
* To get the correct recipient types after switching accounts, you must first remove the existing recipients, then add them back to the mail item.
|
|
22448
22448
|
*
|
|
22449
|
+
* 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.
|
|
22450
|
+
*
|
|
22449
22451
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
22450
22452
|
* of type `Office.AsyncResult`. The `asyncResult.value` property of the result is an array of
|
|
22451
22453
|
* {@link Office.EmailAddressDetails | EmailAddressDetails} objects.
|
|
@@ -22472,9 +22474,8 @@ declare namespace Office {
|
|
|
22472
22474
|
* - 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.
|
|
22473
22475
|
* 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.
|
|
22474
22476
|
*
|
|
22475
|
-
* - In Outlook on Android and on iOS, the `setAsync` method
|
|
22476
|
-
* supported
|
|
22477
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
22477
|
+
* - 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
|
|
22478
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22478
22479
|
*
|
|
22479
22480
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
22480
22481
|
*
|
|
@@ -22515,9 +22516,8 @@ declare namespace Office {
|
|
|
22515
22516
|
* - 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.
|
|
22516
22517
|
* 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.
|
|
22517
22518
|
*
|
|
22518
|
-
* - In Outlook on Android and on iOS, the `setAsync` method
|
|
22519
|
-
* supported
|
|
22520
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-mobile-apis | Outlook JavaScript APIs supported in Outlook on mobile devices}.
|
|
22519
|
+
* - 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
|
|
22520
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22521
22521
|
*
|
|
22522
22522
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
22523
22523
|
*
|
|
@@ -31603,6 +31603,8 @@ declare namespace Excel {
|
|
|
31603
31603
|
*
|
|
31604
31604
|
* @remarks
|
|
31605
31605
|
* [Api set: ExcelApi 1.19]
|
|
31606
|
+
*
|
|
31607
|
+
* This interface isn't supported in Excel on the web.
|
|
31606
31608
|
*/
|
|
31607
31609
|
interface LinkedEntityLoadServiceRequest {
|
|
31608
31610
|
/**
|
|
@@ -31610,6 +31612,8 @@ declare namespace Excel {
|
|
|
31610
31612
|
*
|
|
31611
31613
|
* @remarks
|
|
31612
31614
|
* [Api set: ExcelApi 1.19]
|
|
31615
|
+
*
|
|
31616
|
+
* This property isn't supported in Excel on the web.
|
|
31613
31617
|
*/
|
|
31614
31618
|
domainId: string;
|
|
31615
31619
|
/**
|
|
@@ -31617,6 +31621,8 @@ declare namespace Excel {
|
|
|
31617
31621
|
*
|
|
31618
31622
|
* @remarks
|
|
31619
31623
|
* [Api set: ExcelApi 1.19]
|
|
31624
|
+
*
|
|
31625
|
+
* This property isn't supported in Excel on the web.
|
|
31620
31626
|
*/
|
|
31621
31627
|
entities: LinkedEntityIdCulture[];
|
|
31622
31628
|
}
|
|
@@ -31625,6 +31631,8 @@ declare namespace Excel {
|
|
|
31625
31631
|
*
|
|
31626
31632
|
* @remarks
|
|
31627
31633
|
* [Api set: ExcelApi 1.19]
|
|
31634
|
+
*
|
|
31635
|
+
* This interface isn't supported in Excel on the web.
|
|
31628
31636
|
*/
|
|
31629
31637
|
interface LinkedEntityLoadServiceResult {
|
|
31630
31638
|
/**
|
|
@@ -31632,6 +31640,8 @@ declare namespace Excel {
|
|
|
31632
31640
|
*
|
|
31633
31641
|
* @remarks
|
|
31634
31642
|
* [Api set: ExcelApi 1.19]
|
|
31643
|
+
*
|
|
31644
|
+
* This property isn't supported in Excel on the web.
|
|
31635
31645
|
*/
|
|
31636
31646
|
entities: LinkedEntityCellValue[];
|
|
31637
31647
|
}
|
|
@@ -31676,6 +31686,8 @@ declare namespace Excel {
|
|
|
31676
31686
|
*
|
|
31677
31687
|
* @remarks
|
|
31678
31688
|
* [Api set: ExcelApi 1.19]
|
|
31689
|
+
*
|
|
31690
|
+
* This interface isn't supported in Excel on the web.
|
|
31679
31691
|
*/
|
|
31680
31692
|
interface LinkedEntityIdCulture {
|
|
31681
31693
|
/**
|
|
@@ -31683,6 +31695,8 @@ declare namespace Excel {
|
|
|
31683
31695
|
*
|
|
31684
31696
|
* @remarks
|
|
31685
31697
|
* [Api set: ExcelApi 1.19]
|
|
31698
|
+
*
|
|
31699
|
+
* This property isn't supported in Excel on the web.
|
|
31686
31700
|
*/
|
|
31687
31701
|
entityId: string;
|
|
31688
31702
|
/**
|
|
@@ -31690,6 +31704,8 @@ declare namespace Excel {
|
|
|
31690
31704
|
*
|
|
31691
31705
|
* @remarks
|
|
31692
31706
|
* [Api set: ExcelApi 1.19]
|
|
31707
|
+
*
|
|
31708
|
+
* This property isn't supported in Excel on the web.
|
|
31693
31709
|
*/
|
|
31694
31710
|
culture: string;
|
|
31695
31711
|
}
|
|
@@ -60620,6 +60636,8 @@ declare namespace Excel {
|
|
|
60620
60636
|
*
|
|
60621
60637
|
* @remarks
|
|
60622
60638
|
* [Api set: ExcelApi 1.19]
|
|
60639
|
+
*
|
|
60640
|
+
* This class isn't supported in Excel on the web.
|
|
60623
60641
|
*/
|
|
60624
60642
|
class LinkedEntityDataDomain extends OfficeExtension.ClientObject {
|
|
60625
60643
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -60630,6 +60648,8 @@ declare namespace Excel {
|
|
|
60630
60648
|
*
|
|
60631
60649
|
* @remarks
|
|
60632
60650
|
* [Api set: ExcelApi 1.19]
|
|
60651
|
+
*
|
|
60652
|
+
* This property isn't supported in Excel on the web.
|
|
60633
60653
|
*/
|
|
60634
60654
|
readonly dataProvider: string;
|
|
60635
60655
|
/**
|
|
@@ -60638,6 +60658,8 @@ declare namespace Excel {
|
|
|
60638
60658
|
*
|
|
60639
60659
|
* @remarks
|
|
60640
60660
|
* [Api set: ExcelApi 1.19]
|
|
60661
|
+
*
|
|
60662
|
+
* This property isn't supported in Excel on the web.
|
|
60641
60663
|
*/
|
|
60642
60664
|
readonly id: string;
|
|
60643
60665
|
/**
|
|
@@ -60646,6 +60668,8 @@ declare namespace Excel {
|
|
|
60646
60668
|
*
|
|
60647
60669
|
* @remarks
|
|
60648
60670
|
* [Api set: ExcelApi 1.19]
|
|
60671
|
+
*
|
|
60672
|
+
* This property isn't supported in Excel on the web.
|
|
60649
60673
|
*/
|
|
60650
60674
|
readonly lastRefreshed: Date;
|
|
60651
60675
|
/**
|
|
@@ -60655,6 +60679,8 @@ declare namespace Excel {
|
|
|
60655
60679
|
*
|
|
60656
60680
|
* @remarks
|
|
60657
60681
|
* [Api set: ExcelApi 1.19]
|
|
60682
|
+
*
|
|
60683
|
+
* This property isn't supported in Excel on the web.
|
|
60658
60684
|
*/
|
|
60659
60685
|
readonly loadFunctionId: string;
|
|
60660
60686
|
/**
|
|
@@ -60663,6 +60689,8 @@ declare namespace Excel {
|
|
|
60663
60689
|
*
|
|
60664
60690
|
* @remarks
|
|
60665
60691
|
* [Api set: ExcelApi 1.19]
|
|
60692
|
+
*
|
|
60693
|
+
* This property isn't supported in Excel on the web.
|
|
60666
60694
|
*/
|
|
60667
60695
|
readonly name: string;
|
|
60668
60696
|
/**
|
|
@@ -60671,6 +60699,8 @@ declare namespace Excel {
|
|
|
60671
60699
|
*
|
|
60672
60700
|
* @remarks
|
|
60673
60701
|
* [Api set: ExcelApi 1.19]
|
|
60702
|
+
*
|
|
60703
|
+
* This property isn't supported in Excel on the web.
|
|
60674
60704
|
*/
|
|
60675
60705
|
readonly periodicRefreshInterval: number;
|
|
60676
60706
|
/**
|
|
@@ -60680,6 +60710,8 @@ declare namespace Excel {
|
|
|
60680
60710
|
*
|
|
60681
60711
|
* @remarks
|
|
60682
60712
|
* [Api set: ExcelApi 1.19]
|
|
60713
|
+
*
|
|
60714
|
+
* This property isn't supported in Excel on the web.
|
|
60683
60715
|
*/
|
|
60684
60716
|
refreshMode: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
60685
60717
|
/**
|
|
@@ -60689,6 +60721,8 @@ declare namespace Excel {
|
|
|
60689
60721
|
*
|
|
60690
60722
|
* @remarks
|
|
60691
60723
|
* [Api set: ExcelApi 1.19]
|
|
60724
|
+
*
|
|
60725
|
+
* This property isn't supported in Excel on the web.
|
|
60692
60726
|
*/
|
|
60693
60727
|
readonly serviceId: number;
|
|
60694
60728
|
/**
|
|
@@ -60697,6 +60731,8 @@ declare namespace Excel {
|
|
|
60697
60731
|
*
|
|
60698
60732
|
* @remarks
|
|
60699
60733
|
* [Api set: ExcelApi 1.19]
|
|
60734
|
+
*
|
|
60735
|
+
* This property isn't supported in Excel on the web.
|
|
60700
60736
|
*/
|
|
60701
60737
|
readonly supportedRefreshModes: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
60702
60738
|
/**
|
|
@@ -60706,6 +60742,8 @@ declare namespace Excel {
|
|
|
60706
60742
|
*
|
|
60707
60743
|
* @remarks
|
|
60708
60744
|
* [Api set: ExcelApi 1.19]
|
|
60745
|
+
*
|
|
60746
|
+
* This method isn't supported in Excel on the web.
|
|
60709
60747
|
*/
|
|
60710
60748
|
delete(): void;
|
|
60711
60749
|
/**
|
|
@@ -60714,6 +60752,8 @@ declare namespace Excel {
|
|
|
60714
60752
|
*
|
|
60715
60753
|
* @remarks
|
|
60716
60754
|
* [Api set: ExcelApi 1.19]
|
|
60755
|
+
*
|
|
60756
|
+
* This method isn't supported in Excel on the web.
|
|
60717
60757
|
*/
|
|
60718
60758
|
refresh(): void;
|
|
60719
60759
|
/**
|
|
@@ -60748,6 +60788,8 @@ declare namespace Excel {
|
|
|
60748
60788
|
*
|
|
60749
60789
|
* @remarks
|
|
60750
60790
|
* [Api set: ExcelApi 1.19]
|
|
60791
|
+
*
|
|
60792
|
+
* This interface isn't supported in Excel on the web.
|
|
60751
60793
|
*/
|
|
60752
60794
|
interface LinkedEntityDataDomainAddedEventArgs {
|
|
60753
60795
|
/**
|
|
@@ -60756,6 +60798,8 @@ declare namespace Excel {
|
|
|
60756
60798
|
*
|
|
60757
60799
|
* @remarks
|
|
60758
60800
|
* [Api set: ExcelApi 1.19]
|
|
60801
|
+
*
|
|
60802
|
+
* This property isn't supported in Excel on the web.
|
|
60759
60803
|
*/
|
|
60760
60804
|
id?: string;
|
|
60761
60805
|
/**
|
|
@@ -60763,6 +60807,8 @@ declare namespace Excel {
|
|
|
60763
60807
|
*
|
|
60764
60808
|
* @remarks
|
|
60765
60809
|
* [Api set: ExcelApi 1.19]
|
|
60810
|
+
*
|
|
60811
|
+
* This property isn't supported in Excel on the web.
|
|
60766
60812
|
*/
|
|
60767
60813
|
serviceId: number;
|
|
60768
60814
|
/**
|
|
@@ -60770,6 +60816,8 @@ declare namespace Excel {
|
|
|
60770
60816
|
*
|
|
60771
60817
|
* @remarks
|
|
60772
60818
|
* [Api set: ExcelApi 1.19]
|
|
60819
|
+
*
|
|
60820
|
+
* This property isn't supported in Excel on the web.
|
|
60773
60821
|
*/
|
|
60774
60822
|
source: Excel.EventSource | "Local" | "Remote";
|
|
60775
60823
|
/**
|
|
@@ -60777,6 +60825,8 @@ declare namespace Excel {
|
|
|
60777
60825
|
*
|
|
60778
60826
|
* @remarks
|
|
60779
60827
|
* [Api set: ExcelApi 1.19]
|
|
60828
|
+
*
|
|
60829
|
+
* This property isn't supported in Excel on the web.
|
|
60780
60830
|
*/
|
|
60781
60831
|
type: "LinkedEntityDataDomainLinkedEntityDataDomainAdded";
|
|
60782
60832
|
}
|
|
@@ -60786,6 +60836,8 @@ declare namespace Excel {
|
|
|
60786
60836
|
*
|
|
60787
60837
|
* @remarks
|
|
60788
60838
|
* [Api set: ExcelApi 1.19]
|
|
60839
|
+
*
|
|
60840
|
+
* This class isn't supported in Excel on the web.
|
|
60789
60841
|
*/
|
|
60790
60842
|
class LinkedEntityDataDomainCollection extends OfficeExtension.ClientObject {
|
|
60791
60843
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -60798,6 +60850,8 @@ declare namespace Excel {
|
|
|
60798
60850
|
*
|
|
60799
60851
|
* @remarks
|
|
60800
60852
|
* [Api set: ExcelApi 1.19]
|
|
60853
|
+
*
|
|
60854
|
+
* This method isn't supported in Excel on the web.
|
|
60801
60855
|
*
|
|
60802
60856
|
* @param options Options that are used to create the linked entity data domain to be added.
|
|
60803
60857
|
*/
|
|
@@ -60807,6 +60861,8 @@ declare namespace Excel {
|
|
|
60807
60861
|
*
|
|
60808
60862
|
* @remarks
|
|
60809
60863
|
* [Api set: ExcelApi 1.19]
|
|
60864
|
+
*
|
|
60865
|
+
* This method isn't supported in Excel on the web.
|
|
60810
60866
|
*/
|
|
60811
60867
|
getCount(): OfficeExtension.ClientResult<number>;
|
|
60812
60868
|
/**
|
|
@@ -60814,6 +60870,8 @@ declare namespace Excel {
|
|
|
60814
60870
|
*
|
|
60815
60871
|
* @remarks
|
|
60816
60872
|
* [Api set: ExcelApi 1.19]
|
|
60873
|
+
*
|
|
60874
|
+
* This method isn't supported in Excel on the web.
|
|
60817
60875
|
*
|
|
60818
60876
|
* @param id The `id` of the `LinkedEntityDataDomain` object to be retrieved.
|
|
60819
60877
|
* @returns The linked entity data domain with the given `id`. If there are multiple linked entity data domains with the same `id`, the one defined by this Office Add-in will be returned.
|
|
@@ -60824,6 +60882,8 @@ declare namespace Excel {
|
|
|
60824
60882
|
*
|
|
60825
60883
|
* @remarks
|
|
60826
60884
|
* [Api set: ExcelApi 1.19]
|
|
60885
|
+
*
|
|
60886
|
+
* This method isn't supported in Excel on the web.
|
|
60827
60887
|
*
|
|
60828
60888
|
* @param index The index of the linked entity data domain in the collection.
|
|
60829
60889
|
* @returns The linked entity data domain at the given index.
|
|
@@ -60834,6 +60894,8 @@ declare namespace Excel {
|
|
|
60834
60894
|
*
|
|
60835
60895
|
* @remarks
|
|
60836
60896
|
* [Api set: ExcelApi 1.19]
|
|
60897
|
+
*
|
|
60898
|
+
* This method isn't supported in Excel on the web.
|
|
60837
60899
|
*
|
|
60838
60900
|
* @param name The `name` of the `LinkedEntityDataDomain` object to be retrieved.
|
|
60839
60901
|
* @returns The linked entity data domain with the given `name`. If there are multiple linked entity data domains with the same `name`, the one defined by this Office Add-in will be returned.
|
|
@@ -60846,6 +60908,8 @@ declare namespace Excel {
|
|
|
60846
60908
|
*
|
|
60847
60909
|
* @remarks
|
|
60848
60910
|
* [Api set: ExcelApi 1.19]
|
|
60911
|
+
*
|
|
60912
|
+
* This method isn't supported in Excel on the web.
|
|
60849
60913
|
*
|
|
60850
60914
|
* @param name The `name` of the `LinkedEntityDataDomain` object to be retrieved.
|
|
60851
60915
|
* @returns The linked entity data domain with the given `name`. If there are multiple linked entity data domains with the same `name`, the one defined by this Office Add-in will be returned.
|
|
@@ -60858,6 +60922,8 @@ declare namespace Excel {
|
|
|
60858
60922
|
*
|
|
60859
60923
|
* @remarks
|
|
60860
60924
|
* [Api set: ExcelApi 1.19]
|
|
60925
|
+
*
|
|
60926
|
+
* This method isn't supported in Excel on the web.
|
|
60861
60927
|
*
|
|
60862
60928
|
* @param id The `id` of the `LinkedEntityDataDomain` object to be retrieved.
|
|
60863
60929
|
* @returns The linked entity data domain with the given `id`. If there are multiple linked entity data domains with the same `id`, the one defined by this Office Add-in will be returned.
|
|
@@ -60869,6 +60935,8 @@ declare namespace Excel {
|
|
|
60869
60935
|
*
|
|
60870
60936
|
* @remarks
|
|
60871
60937
|
* [Api set: ExcelApi 1.19]
|
|
60938
|
+
*
|
|
60939
|
+
* This method isn't supported in Excel on the web.
|
|
60872
60940
|
*/
|
|
60873
60941
|
refreshAll(): void;
|
|
60874
60942
|
/**
|
|
@@ -60894,6 +60962,8 @@ declare namespace Excel {
|
|
|
60894
60962
|
*
|
|
60895
60963
|
* @remarks
|
|
60896
60964
|
* [Api set: ExcelApi 1.19]
|
|
60965
|
+
*
|
|
60966
|
+
* This event isn't supported in Excel on the web.
|
|
60897
60967
|
*
|
|
60898
60968
|
* @eventproperty
|
|
60899
60969
|
*/
|
|
@@ -60903,6 +60973,8 @@ declare namespace Excel {
|
|
|
60903
60973
|
*
|
|
60904
60974
|
* @remarks
|
|
60905
60975
|
* [Api set: ExcelApi 1.19]
|
|
60976
|
+
*
|
|
60977
|
+
* This event isn't supported in Excel on the web.
|
|
60906
60978
|
*
|
|
60907
60979
|
* @eventproperty
|
|
60908
60980
|
*/
|
|
@@ -60912,6 +60984,8 @@ declare namespace Excel {
|
|
|
60912
60984
|
*
|
|
60913
60985
|
* @remarks
|
|
60914
60986
|
* [Api set: ExcelApi 1.19]
|
|
60987
|
+
*
|
|
60988
|
+
* This event isn't supported in Excel on the web.
|
|
60915
60989
|
*
|
|
60916
60990
|
* @eventproperty
|
|
60917
60991
|
*/
|
|
@@ -60927,6 +61001,8 @@ declare namespace Excel {
|
|
|
60927
61001
|
*
|
|
60928
61002
|
* @remarks
|
|
60929
61003
|
* [Api set: ExcelApi 1.19]
|
|
61004
|
+
*
|
|
61005
|
+
* This interface isn't supported in Excel on the web.
|
|
60930
61006
|
*/
|
|
60931
61007
|
interface LinkedEntityDataDomainCreateOptions {
|
|
60932
61008
|
/**
|
|
@@ -60934,6 +61010,8 @@ declare namespace Excel {
|
|
|
60934
61010
|
*
|
|
60935
61011
|
* @remarks
|
|
60936
61012
|
* [Api set: ExcelApi 1.19]
|
|
61013
|
+
*
|
|
61014
|
+
* This property isn't supported in Excel on the web.
|
|
60937
61015
|
*/
|
|
60938
61016
|
dataProvider: string;
|
|
60939
61017
|
/**
|
|
@@ -60942,6 +61020,8 @@ declare namespace Excel {
|
|
|
60942
61020
|
*
|
|
60943
61021
|
* @remarks
|
|
60944
61022
|
* [Api set: ExcelApi 1.19]
|
|
61023
|
+
*
|
|
61024
|
+
* This property isn't supported in Excel on the web.
|
|
60945
61025
|
*/
|
|
60946
61026
|
id: string;
|
|
60947
61027
|
/**
|
|
@@ -60950,6 +61030,8 @@ declare namespace Excel {
|
|
|
60950
61030
|
*
|
|
60951
61031
|
* @remarks
|
|
60952
61032
|
* [Api set: ExcelApi 1.19]
|
|
61033
|
+
*
|
|
61034
|
+
* This property isn't supported in Excel on the web.
|
|
60953
61035
|
*/
|
|
60954
61036
|
loadFunctionId: string;
|
|
60955
61037
|
/**
|
|
@@ -60958,6 +61040,8 @@ declare namespace Excel {
|
|
|
60958
61040
|
*
|
|
60959
61041
|
* @remarks
|
|
60960
61042
|
* [Api set: ExcelApi 1.19]
|
|
61043
|
+
*
|
|
61044
|
+
* This property isn't supported in Excel on the web.
|
|
60961
61045
|
*/
|
|
60962
61046
|
name: string;
|
|
60963
61047
|
/**
|
|
@@ -60967,6 +61051,8 @@ declare namespace Excel {
|
|
|
60967
61051
|
*
|
|
60968
61052
|
* @remarks
|
|
60969
61053
|
* [Api set: ExcelApi 1.19]
|
|
61054
|
+
*
|
|
61055
|
+
* This property isn't supported in Excel on the web.
|
|
60970
61056
|
*/
|
|
60971
61057
|
periodicRefreshInterval?: number;
|
|
60972
61058
|
/**
|
|
@@ -60978,6 +61064,8 @@ declare namespace Excel {
|
|
|
60978
61064
|
*
|
|
60979
61065
|
* @remarks
|
|
60980
61066
|
* [Api set: ExcelApi 1.19]
|
|
61067
|
+
*
|
|
61068
|
+
* This property isn't supported in Excel on the web.
|
|
60981
61069
|
*/
|
|
60982
61070
|
supportedRefreshModes?: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
60983
61071
|
}
|
|
@@ -60986,6 +61074,8 @@ declare namespace Excel {
|
|
|
60986
61074
|
*
|
|
60987
61075
|
* @remarks
|
|
60988
61076
|
* [Api set: ExcelApi 1.19]
|
|
61077
|
+
*
|
|
61078
|
+
* This interface isn't supported in Excel on the web.
|
|
60989
61079
|
*/
|
|
60990
61080
|
interface LinkedEntityDataDomainRefreshCompletedEventArgs {
|
|
60991
61081
|
/**
|
|
@@ -60993,6 +61083,8 @@ declare namespace Excel {
|
|
|
60993
61083
|
*
|
|
60994
61084
|
* @remarks
|
|
60995
61085
|
* [Api set: ExcelApi 1.19]
|
|
61086
|
+
*
|
|
61087
|
+
* This property isn't supported in Excel on the web.
|
|
60996
61088
|
*/
|
|
60997
61089
|
errors?: string[];
|
|
60998
61090
|
/**
|
|
@@ -61001,6 +61093,8 @@ declare namespace Excel {
|
|
|
61001
61093
|
*
|
|
61002
61094
|
* @remarks
|
|
61003
61095
|
* [Api set: ExcelApi 1.19]
|
|
61096
|
+
*
|
|
61097
|
+
* This property isn't supported in Excel on the web.
|
|
61004
61098
|
*/
|
|
61005
61099
|
id?: string;
|
|
61006
61100
|
/**
|
|
@@ -61008,6 +61102,8 @@ declare namespace Excel {
|
|
|
61008
61102
|
*
|
|
61009
61103
|
* @remarks
|
|
61010
61104
|
* [Api set: ExcelApi 1.19]
|
|
61105
|
+
*
|
|
61106
|
+
* This property isn't supported in Excel on the web.
|
|
61011
61107
|
*/
|
|
61012
61108
|
refreshed: boolean;
|
|
61013
61109
|
/**
|
|
@@ -61015,6 +61111,8 @@ declare namespace Excel {
|
|
|
61015
61111
|
*
|
|
61016
61112
|
* @remarks
|
|
61017
61113
|
* [Api set: ExcelApi 1.19]
|
|
61114
|
+
*
|
|
61115
|
+
* This property isn't supported in Excel on the web.
|
|
61018
61116
|
*/
|
|
61019
61117
|
serviceId: number;
|
|
61020
61118
|
/**
|
|
@@ -61022,6 +61120,8 @@ declare namespace Excel {
|
|
|
61022
61120
|
*
|
|
61023
61121
|
* @remarks
|
|
61024
61122
|
* [Api set: ExcelApi 1.19]
|
|
61123
|
+
*
|
|
61124
|
+
* This property isn't supported in Excel on the web.
|
|
61025
61125
|
*/
|
|
61026
61126
|
source: Excel.EventSource | "Local" | "Remote";
|
|
61027
61127
|
/**
|
|
@@ -61029,6 +61129,8 @@ declare namespace Excel {
|
|
|
61029
61129
|
*
|
|
61030
61130
|
* @remarks
|
|
61031
61131
|
* [Api set: ExcelApi 1.19]
|
|
61132
|
+
*
|
|
61133
|
+
* This property isn't supported in Excel on the web.
|
|
61032
61134
|
*/
|
|
61033
61135
|
type: "LinkedEntityDataDomainRefreshCompleted";
|
|
61034
61136
|
}
|
|
@@ -61037,12 +61139,16 @@ declare namespace Excel {
|
|
|
61037
61139
|
*
|
|
61038
61140
|
* @remarks
|
|
61039
61141
|
* [Api set: ExcelApi 1.19]
|
|
61142
|
+
*
|
|
61143
|
+
* This enum isn't supported in Excel on the web.
|
|
61040
61144
|
*/
|
|
61041
61145
|
enum LinkedEntityDataDomainRefreshMode {
|
|
61042
61146
|
/**
|
|
61043
61147
|
* Refresh mode is unknown or unsupported.
|
|
61044
61148
|
* @remarks
|
|
61045
61149
|
* [Api set: ExcelApi 1.19]
|
|
61150
|
+
*
|
|
61151
|
+
* This field isn't supported in Excel on the web.
|
|
61046
61152
|
*/
|
|
61047
61153
|
unknown = "Unknown",
|
|
61048
61154
|
/**
|
|
@@ -61050,6 +61156,8 @@ declare namespace Excel {
|
|
|
61050
61156
|
Refresh is not triggered automatically.
|
|
61051
61157
|
* @remarks
|
|
61052
61158
|
* [Api set: ExcelApi 1.19]
|
|
61159
|
+
*
|
|
61160
|
+
* This field isn't supported in Excel on the web.
|
|
61053
61161
|
*/
|
|
61054
61162
|
manual = "Manual",
|
|
61055
61163
|
/**
|
|
@@ -61057,6 +61165,8 @@ declare namespace Excel {
|
|
|
61057
61165
|
Refresh on add-in load, applicable to linked entity data domains defined by Office Add-ins.
|
|
61058
61166
|
* @remarks
|
|
61059
61167
|
* [Api set: ExcelApi 1.19]
|
|
61168
|
+
*
|
|
61169
|
+
* This field isn't supported in Excel on the web.
|
|
61060
61170
|
*/
|
|
61061
61171
|
onLoad = "OnLoad",
|
|
61062
61172
|
/**
|
|
@@ -61065,6 +61175,8 @@ declare namespace Excel {
|
|
|
61065
61175
|
For linked entity data domains defined by Office Add-ins, this value also initiates a refresh each time the add-in loads.
|
|
61066
61176
|
* @remarks
|
|
61067
61177
|
* [Api set: ExcelApi 1.19]
|
|
61178
|
+
*
|
|
61179
|
+
* This field isn't supported in Excel on the web.
|
|
61068
61180
|
*/
|
|
61069
61181
|
periodic = "Periodic"
|
|
61070
61182
|
}
|
|
@@ -61073,6 +61185,8 @@ declare namespace Excel {
|
|
|
61073
61185
|
*
|
|
61074
61186
|
* @remarks
|
|
61075
61187
|
* [Api set: ExcelApi 1.19]
|
|
61188
|
+
*
|
|
61189
|
+
* This interface isn't supported in Excel on the web.
|
|
61076
61190
|
*/
|
|
61077
61191
|
interface LinkedEntityDataDomainRefreshModeChangedEventArgs {
|
|
61078
61192
|
/**
|
|
@@ -61081,6 +61195,8 @@ declare namespace Excel {
|
|
|
61081
61195
|
*
|
|
61082
61196
|
* @remarks
|
|
61083
61197
|
* [Api set: ExcelApi 1.19]
|
|
61198
|
+
*
|
|
61199
|
+
* This property isn't supported in Excel on the web.
|
|
61084
61200
|
*/
|
|
61085
61201
|
id?: string;
|
|
61086
61202
|
/**
|
|
@@ -61088,6 +61204,8 @@ declare namespace Excel {
|
|
|
61088
61204
|
*
|
|
61089
61205
|
* @remarks
|
|
61090
61206
|
* [Api set: ExcelApi 1.19]
|
|
61207
|
+
*
|
|
61208
|
+
* This property isn't supported in Excel on the web.
|
|
61091
61209
|
*/
|
|
61092
61210
|
refreshMode: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
61093
61211
|
/**
|
|
@@ -61095,6 +61213,8 @@ declare namespace Excel {
|
|
|
61095
61213
|
*
|
|
61096
61214
|
* @remarks
|
|
61097
61215
|
* [Api set: ExcelApi 1.19]
|
|
61216
|
+
*
|
|
61217
|
+
* This property isn't supported in Excel on the web.
|
|
61098
61218
|
*/
|
|
61099
61219
|
serviceId: number;
|
|
61100
61220
|
/**
|
|
@@ -61102,6 +61222,8 @@ declare namespace Excel {
|
|
|
61102
61222
|
*
|
|
61103
61223
|
* @remarks
|
|
61104
61224
|
* [Api set: ExcelApi 1.19]
|
|
61225
|
+
*
|
|
61226
|
+
* This property isn't supported in Excel on the web.
|
|
61105
61227
|
*/
|
|
61106
61228
|
source: Excel.EventSource | "Local" | "Remote";
|
|
61107
61229
|
/**
|
|
@@ -61109,6 +61231,8 @@ declare namespace Excel {
|
|
|
61109
61231
|
*
|
|
61110
61232
|
* @remarks
|
|
61111
61233
|
* [Api set: ExcelApi 1.19]
|
|
61234
|
+
*
|
|
61235
|
+
* This property isn't supported in Excel on the web.
|
|
61112
61236
|
*/
|
|
61113
61237
|
type: "LinkedEntityDataDomainRefreshModeChanged";
|
|
61114
61238
|
}
|
|
@@ -77436,6 +77560,8 @@ declare namespace Excel {
|
|
|
77436
77560
|
*
|
|
77437
77561
|
* @remarks
|
|
77438
77562
|
* [Api set: ExcelApi 1.19]
|
|
77563
|
+
*
|
|
77564
|
+
* This property isn't supported in Excel on the web.
|
|
77439
77565
|
*/
|
|
77440
77566
|
refreshMode?: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
77441
77567
|
}
|
|
@@ -84576,6 +84702,8 @@ declare namespace Excel {
|
|
|
84576
84702
|
*
|
|
84577
84703
|
* @remarks
|
|
84578
84704
|
* [Api set: ExcelApi 1.19]
|
|
84705
|
+
*
|
|
84706
|
+
* This property isn't supported in Excel on the web.
|
|
84579
84707
|
*/
|
|
84580
84708
|
dataProvider?: string;
|
|
84581
84709
|
/**
|
|
@@ -84584,6 +84712,8 @@ declare namespace Excel {
|
|
|
84584
84712
|
*
|
|
84585
84713
|
* @remarks
|
|
84586
84714
|
* [Api set: ExcelApi 1.19]
|
|
84715
|
+
*
|
|
84716
|
+
* This property isn't supported in Excel on the web.
|
|
84587
84717
|
*/
|
|
84588
84718
|
id?: string;
|
|
84589
84719
|
/**
|
|
@@ -84592,6 +84722,8 @@ declare namespace Excel {
|
|
|
84592
84722
|
*
|
|
84593
84723
|
* @remarks
|
|
84594
84724
|
* [Api set: ExcelApi 1.19]
|
|
84725
|
+
*
|
|
84726
|
+
* This property isn't supported in Excel on the web.
|
|
84595
84727
|
*/
|
|
84596
84728
|
lastRefreshed?: Date;
|
|
84597
84729
|
/**
|
|
@@ -84601,6 +84733,8 @@ declare namespace Excel {
|
|
|
84601
84733
|
*
|
|
84602
84734
|
* @remarks
|
|
84603
84735
|
* [Api set: ExcelApi 1.19]
|
|
84736
|
+
*
|
|
84737
|
+
* This property isn't supported in Excel on the web.
|
|
84604
84738
|
*/
|
|
84605
84739
|
loadFunctionId?: string;
|
|
84606
84740
|
/**
|
|
@@ -84609,6 +84743,8 @@ declare namespace Excel {
|
|
|
84609
84743
|
*
|
|
84610
84744
|
* @remarks
|
|
84611
84745
|
* [Api set: ExcelApi 1.19]
|
|
84746
|
+
*
|
|
84747
|
+
* This property isn't supported in Excel on the web.
|
|
84612
84748
|
*/
|
|
84613
84749
|
name?: string;
|
|
84614
84750
|
/**
|
|
@@ -84617,6 +84753,8 @@ declare namespace Excel {
|
|
|
84617
84753
|
*
|
|
84618
84754
|
* @remarks
|
|
84619
84755
|
* [Api set: ExcelApi 1.19]
|
|
84756
|
+
*
|
|
84757
|
+
* This property isn't supported in Excel on the web.
|
|
84620
84758
|
*/
|
|
84621
84759
|
periodicRefreshInterval?: number;
|
|
84622
84760
|
/**
|
|
@@ -84626,6 +84764,8 @@ declare namespace Excel {
|
|
|
84626
84764
|
*
|
|
84627
84765
|
* @remarks
|
|
84628
84766
|
* [Api set: ExcelApi 1.19]
|
|
84767
|
+
*
|
|
84768
|
+
* This property isn't supported in Excel on the web.
|
|
84629
84769
|
*/
|
|
84630
84770
|
refreshMode?: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
84631
84771
|
/**
|
|
@@ -84635,6 +84775,8 @@ declare namespace Excel {
|
|
|
84635
84775
|
*
|
|
84636
84776
|
* @remarks
|
|
84637
84777
|
* [Api set: ExcelApi 1.19]
|
|
84778
|
+
*
|
|
84779
|
+
* This property isn't supported in Excel on the web.
|
|
84638
84780
|
*/
|
|
84639
84781
|
serviceId?: number;
|
|
84640
84782
|
/**
|
|
@@ -84643,6 +84785,8 @@ declare namespace Excel {
|
|
|
84643
84785
|
*
|
|
84644
84786
|
* @remarks
|
|
84645
84787
|
* [Api set: ExcelApi 1.19]
|
|
84788
|
+
*
|
|
84789
|
+
* This property isn't supported in Excel on the web.
|
|
84646
84790
|
*/
|
|
84647
84791
|
supportedRefreshModes?: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
84648
84792
|
}
|
|
@@ -96667,6 +96811,8 @@ declare namespace Excel {
|
|
|
96667
96811
|
*
|
|
96668
96812
|
* @remarks
|
|
96669
96813
|
* [Api set: ExcelApi 1.19]
|
|
96814
|
+
*
|
|
96815
|
+
* This interface isn't supported in Excel on the web.
|
|
96670
96816
|
*/
|
|
96671
96817
|
interface LinkedEntityDataDomainLoadOptions {
|
|
96672
96818
|
/**
|
|
@@ -96679,6 +96825,8 @@ declare namespace Excel {
|
|
|
96679
96825
|
*
|
|
96680
96826
|
* @remarks
|
|
96681
96827
|
* [Api set: ExcelApi 1.19]
|
|
96828
|
+
*
|
|
96829
|
+
* This property isn't supported in Excel on the web.
|
|
96682
96830
|
*/
|
|
96683
96831
|
dataProvider?: boolean;
|
|
96684
96832
|
/**
|
|
@@ -96687,6 +96835,8 @@ declare namespace Excel {
|
|
|
96687
96835
|
*
|
|
96688
96836
|
* @remarks
|
|
96689
96837
|
* [Api set: ExcelApi 1.19]
|
|
96838
|
+
*
|
|
96839
|
+
* This property isn't supported in Excel on the web.
|
|
96690
96840
|
*/
|
|
96691
96841
|
id?: boolean;
|
|
96692
96842
|
/**
|
|
@@ -96695,6 +96845,8 @@ declare namespace Excel {
|
|
|
96695
96845
|
*
|
|
96696
96846
|
* @remarks
|
|
96697
96847
|
* [Api set: ExcelApi 1.19]
|
|
96848
|
+
*
|
|
96849
|
+
* This property isn't supported in Excel on the web.
|
|
96698
96850
|
*/
|
|
96699
96851
|
lastRefreshed?: boolean;
|
|
96700
96852
|
/**
|
|
@@ -96704,6 +96856,8 @@ declare namespace Excel {
|
|
|
96704
96856
|
*
|
|
96705
96857
|
* @remarks
|
|
96706
96858
|
* [Api set: ExcelApi 1.19]
|
|
96859
|
+
*
|
|
96860
|
+
* This property isn't supported in Excel on the web.
|
|
96707
96861
|
*/
|
|
96708
96862
|
loadFunctionId?: boolean;
|
|
96709
96863
|
/**
|
|
@@ -96712,6 +96866,8 @@ declare namespace Excel {
|
|
|
96712
96866
|
*
|
|
96713
96867
|
* @remarks
|
|
96714
96868
|
* [Api set: ExcelApi 1.19]
|
|
96869
|
+
*
|
|
96870
|
+
* This property isn't supported in Excel on the web.
|
|
96715
96871
|
*/
|
|
96716
96872
|
name?: boolean;
|
|
96717
96873
|
/**
|
|
@@ -96720,6 +96876,8 @@ declare namespace Excel {
|
|
|
96720
96876
|
*
|
|
96721
96877
|
* @remarks
|
|
96722
96878
|
* [Api set: ExcelApi 1.19]
|
|
96879
|
+
*
|
|
96880
|
+
* This property isn't supported in Excel on the web.
|
|
96723
96881
|
*/
|
|
96724
96882
|
periodicRefreshInterval?: boolean;
|
|
96725
96883
|
/**
|
|
@@ -96729,6 +96887,8 @@ declare namespace Excel {
|
|
|
96729
96887
|
*
|
|
96730
96888
|
* @remarks
|
|
96731
96889
|
* [Api set: ExcelApi 1.19]
|
|
96890
|
+
*
|
|
96891
|
+
* This property isn't supported in Excel on the web.
|
|
96732
96892
|
*/
|
|
96733
96893
|
refreshMode?: boolean;
|
|
96734
96894
|
/**
|
|
@@ -96738,6 +96898,8 @@ declare namespace Excel {
|
|
|
96738
96898
|
*
|
|
96739
96899
|
* @remarks
|
|
96740
96900
|
* [Api set: ExcelApi 1.19]
|
|
96901
|
+
*
|
|
96902
|
+
* This property isn't supported in Excel on the web.
|
|
96741
96903
|
*/
|
|
96742
96904
|
serviceId?: boolean;
|
|
96743
96905
|
/**
|
|
@@ -96746,6 +96908,8 @@ declare namespace Excel {
|
|
|
96746
96908
|
*
|
|
96747
96909
|
* @remarks
|
|
96748
96910
|
* [Api set: ExcelApi 1.19]
|
|
96911
|
+
*
|
|
96912
|
+
* This property isn't supported in Excel on the web.
|
|
96749
96913
|
*/
|
|
96750
96914
|
supportedRefreshModes?: boolean;
|
|
96751
96915
|
}
|
|
@@ -96755,6 +96919,8 @@ declare namespace Excel {
|
|
|
96755
96919
|
*
|
|
96756
96920
|
* @remarks
|
|
96757
96921
|
* [Api set: ExcelApi 1.19]
|
|
96922
|
+
*
|
|
96923
|
+
* This interface isn't supported in Excel on the web.
|
|
96758
96924
|
*/
|
|
96759
96925
|
interface LinkedEntityDataDomainCollectionLoadOptions {
|
|
96760
96926
|
/**
|
|
@@ -96767,6 +96933,8 @@ declare namespace Excel {
|
|
|
96767
96933
|
*
|
|
96768
96934
|
* @remarks
|
|
96769
96935
|
* [Api set: ExcelApi 1.19]
|
|
96936
|
+
*
|
|
96937
|
+
* This property isn't supported in Excel on the web.
|
|
96770
96938
|
*/
|
|
96771
96939
|
dataProvider?: boolean;
|
|
96772
96940
|
/**
|
|
@@ -96775,6 +96943,8 @@ declare namespace Excel {
|
|
|
96775
96943
|
*
|
|
96776
96944
|
* @remarks
|
|
96777
96945
|
* [Api set: ExcelApi 1.19]
|
|
96946
|
+
*
|
|
96947
|
+
* This property isn't supported in Excel on the web.
|
|
96778
96948
|
*/
|
|
96779
96949
|
id?: boolean;
|
|
96780
96950
|
/**
|
|
@@ -96783,6 +96953,8 @@ declare namespace Excel {
|
|
|
96783
96953
|
*
|
|
96784
96954
|
* @remarks
|
|
96785
96955
|
* [Api set: ExcelApi 1.19]
|
|
96956
|
+
*
|
|
96957
|
+
* This property isn't supported in Excel on the web.
|
|
96786
96958
|
*/
|
|
96787
96959
|
lastRefreshed?: boolean;
|
|
96788
96960
|
/**
|
|
@@ -96792,6 +96964,8 @@ declare namespace Excel {
|
|
|
96792
96964
|
*
|
|
96793
96965
|
* @remarks
|
|
96794
96966
|
* [Api set: ExcelApi 1.19]
|
|
96967
|
+
*
|
|
96968
|
+
* This property isn't supported in Excel on the web.
|
|
96795
96969
|
*/
|
|
96796
96970
|
loadFunctionId?: boolean;
|
|
96797
96971
|
/**
|
|
@@ -96800,6 +96974,8 @@ declare namespace Excel {
|
|
|
96800
96974
|
*
|
|
96801
96975
|
* @remarks
|
|
96802
96976
|
* [Api set: ExcelApi 1.19]
|
|
96977
|
+
*
|
|
96978
|
+
* This property isn't supported in Excel on the web.
|
|
96803
96979
|
*/
|
|
96804
96980
|
name?: boolean;
|
|
96805
96981
|
/**
|
|
@@ -96808,6 +96984,8 @@ declare namespace Excel {
|
|
|
96808
96984
|
*
|
|
96809
96985
|
* @remarks
|
|
96810
96986
|
* [Api set: ExcelApi 1.19]
|
|
96987
|
+
*
|
|
96988
|
+
* This property isn't supported in Excel on the web.
|
|
96811
96989
|
*/
|
|
96812
96990
|
periodicRefreshInterval?: boolean;
|
|
96813
96991
|
/**
|
|
@@ -96817,6 +96995,8 @@ declare namespace Excel {
|
|
|
96817
96995
|
*
|
|
96818
96996
|
* @remarks
|
|
96819
96997
|
* [Api set: ExcelApi 1.19]
|
|
96998
|
+
*
|
|
96999
|
+
* This property isn't supported in Excel on the web.
|
|
96820
97000
|
*/
|
|
96821
97001
|
refreshMode?: boolean;
|
|
96822
97002
|
/**
|
|
@@ -96826,6 +97006,8 @@ declare namespace Excel {
|
|
|
96826
97006
|
*
|
|
96827
97007
|
* @remarks
|
|
96828
97008
|
* [Api set: ExcelApi 1.19]
|
|
97009
|
+
*
|
|
97010
|
+
* This property isn't supported in Excel on the web.
|
|
96829
97011
|
*/
|
|
96830
97012
|
serviceId?: boolean;
|
|
96831
97013
|
/**
|
|
@@ -96834,6 +97016,8 @@ declare namespace Excel {
|
|
|
96834
97016
|
*
|
|
96835
97017
|
* @remarks
|
|
96836
97018
|
* [Api set: ExcelApi 1.19]
|
|
97019
|
+
*
|
|
97020
|
+
* This property isn't supported in Excel on the web.
|
|
96837
97021
|
*/
|
|
96838
97022
|
supportedRefreshModes?: boolean;
|
|
96839
97023
|
}
|
|
@@ -166287,6 +166471,8 @@ declare namespace PowerPoint {
|
|
|
166287
166471
|
*
|
|
166288
166472
|
* @remarks
|
|
166289
166473
|
* [Api set: PowerPointApi 1.8]
|
|
166474
|
+
*
|
|
166475
|
+
* This method is optimized to export a single slide. Exporting multiple slides can impact performance.
|
|
166290
166476
|
*/
|
|
166291
166477
|
exportAsBase64(): OfficeExtension.ClientResult<string>;
|
|
166292
166478
|
/**
|
office-js-preview/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js-preview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.622",
|
|
4
4
|
"description": "TypeScript definitions for office-js-preview",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
48
|
"peerDependencies": {},
|
|
49
|
-
"typesPublisherContentHash": "
|
|
49
|
+
"typesPublisherContentHash": "cfa4585567b8de743fd2e6e809eaad44ab6261347b227bbf31164feebe466b23",
|
|
50
50
|
"typeScriptVersion": "5.2",
|
|
51
51
|
"nonNpm": true
|
|
52
52
|
}
|