@types/office-js-preview 1.0.621 → 1.0.623
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 +206 -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:
|
|
11
|
+
* Last updated: Wed, 13 Aug 2025 18:41:38 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -7280,6 +7280,14 @@ declare namespace Office {
|
|
|
7280
7280
|
* event.
|
|
7281
7281
|
*/
|
|
7282
7282
|
themeId: ThemeId;
|
|
7283
|
+
/**
|
|
7284
|
+
* Gets the Office host native theme.
|
|
7285
|
+
*
|
|
7286
|
+
* @remarks
|
|
7287
|
+
*
|
|
7288
|
+
* **Important**: The `fluentThemeData` property is only supported on Win32.
|
|
7289
|
+
*/
|
|
7290
|
+
fluentThemeData?: object;
|
|
7283
7291
|
}
|
|
7284
7292
|
/**
|
|
7285
7293
|
* 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
|
|
@@ -22294,9 +22302,8 @@ declare namespace Office {
|
|
|
22294
22302
|
* - 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
22303
|
* 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
22304
|
*
|
|
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}.
|
|
22305
|
+
* - 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
|
|
22306
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22300
22307
|
*
|
|
22301
22308
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
22302
22309
|
*
|
|
@@ -22333,9 +22340,8 @@ declare namespace Office {
|
|
|
22333
22340
|
* - 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
22341
|
* 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
22342
|
*
|
|
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}.
|
|
22343
|
+
* - 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
|
|
22344
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22339
22345
|
*
|
|
22340
22346
|
* There's no recipient limit if you call `addAsync` in Outlook on Mac (new UI).
|
|
22341
22347
|
*
|
|
@@ -22397,6 +22403,8 @@ declare namespace Office {
|
|
|
22397
22403
|
* 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
22404
|
* 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
22405
|
*
|
|
22406
|
+
* 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.
|
|
22407
|
+
*
|
|
22400
22408
|
* @param options - An object literal that contains one or more of the following properties:-
|
|
22401
22409
|
* `asyncContext`: Developers can provide any object they wish to access in the callback function.
|
|
22402
22410
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
@@ -22446,6 +22454,8 @@ declare namespace Office {
|
|
|
22446
22454
|
* 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
22455
|
* 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
22456
|
*
|
|
22457
|
+
* 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.
|
|
22458
|
+
*
|
|
22449
22459
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter, `asyncResult`,
|
|
22450
22460
|
* of type `Office.AsyncResult`. The `asyncResult.value` property of the result is an array of
|
|
22451
22461
|
* {@link Office.EmailAddressDetails | EmailAddressDetails} objects.
|
|
@@ -22472,9 +22482,8 @@ declare namespace Office {
|
|
|
22472
22482
|
* - 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
22483
|
* 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
22484
|
*
|
|
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}.
|
|
22485
|
+
* - 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
|
|
22486
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22478
22487
|
*
|
|
22479
22488
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
22480
22489
|
*
|
|
@@ -22515,9 +22524,8 @@ declare namespace Office {
|
|
|
22515
22524
|
* - 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
22525
|
* 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
22526
|
*
|
|
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}.
|
|
22527
|
+
* - 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
|
|
22528
|
+
* supported when a user replies from the the reply field at the bottom of a message.
|
|
22521
22529
|
*
|
|
22522
22530
|
* There's no recipient limit if you call `setAsync` in Outlook on Mac (new UI).
|
|
22523
22531
|
*
|
|
@@ -31603,6 +31611,8 @@ declare namespace Excel {
|
|
|
31603
31611
|
*
|
|
31604
31612
|
* @remarks
|
|
31605
31613
|
* [Api set: ExcelApi 1.19]
|
|
31614
|
+
*
|
|
31615
|
+
* This interface isn't supported in Excel on the web.
|
|
31606
31616
|
*/
|
|
31607
31617
|
interface LinkedEntityLoadServiceRequest {
|
|
31608
31618
|
/**
|
|
@@ -31610,6 +31620,8 @@ declare namespace Excel {
|
|
|
31610
31620
|
*
|
|
31611
31621
|
* @remarks
|
|
31612
31622
|
* [Api set: ExcelApi 1.19]
|
|
31623
|
+
*
|
|
31624
|
+
* This property isn't supported in Excel on the web.
|
|
31613
31625
|
*/
|
|
31614
31626
|
domainId: string;
|
|
31615
31627
|
/**
|
|
@@ -31617,6 +31629,8 @@ declare namespace Excel {
|
|
|
31617
31629
|
*
|
|
31618
31630
|
* @remarks
|
|
31619
31631
|
* [Api set: ExcelApi 1.19]
|
|
31632
|
+
*
|
|
31633
|
+
* This property isn't supported in Excel on the web.
|
|
31620
31634
|
*/
|
|
31621
31635
|
entities: LinkedEntityIdCulture[];
|
|
31622
31636
|
}
|
|
@@ -31625,6 +31639,8 @@ declare namespace Excel {
|
|
|
31625
31639
|
*
|
|
31626
31640
|
* @remarks
|
|
31627
31641
|
* [Api set: ExcelApi 1.19]
|
|
31642
|
+
*
|
|
31643
|
+
* This interface isn't supported in Excel on the web.
|
|
31628
31644
|
*/
|
|
31629
31645
|
interface LinkedEntityLoadServiceResult {
|
|
31630
31646
|
/**
|
|
@@ -31632,6 +31648,8 @@ declare namespace Excel {
|
|
|
31632
31648
|
*
|
|
31633
31649
|
* @remarks
|
|
31634
31650
|
* [Api set: ExcelApi 1.19]
|
|
31651
|
+
*
|
|
31652
|
+
* This property isn't supported in Excel on the web.
|
|
31635
31653
|
*/
|
|
31636
31654
|
entities: LinkedEntityCellValue[];
|
|
31637
31655
|
}
|
|
@@ -31676,6 +31694,8 @@ declare namespace Excel {
|
|
|
31676
31694
|
*
|
|
31677
31695
|
* @remarks
|
|
31678
31696
|
* [Api set: ExcelApi 1.19]
|
|
31697
|
+
*
|
|
31698
|
+
* This interface isn't supported in Excel on the web.
|
|
31679
31699
|
*/
|
|
31680
31700
|
interface LinkedEntityIdCulture {
|
|
31681
31701
|
/**
|
|
@@ -31683,6 +31703,8 @@ declare namespace Excel {
|
|
|
31683
31703
|
*
|
|
31684
31704
|
* @remarks
|
|
31685
31705
|
* [Api set: ExcelApi 1.19]
|
|
31706
|
+
*
|
|
31707
|
+
* This property isn't supported in Excel on the web.
|
|
31686
31708
|
*/
|
|
31687
31709
|
entityId: string;
|
|
31688
31710
|
/**
|
|
@@ -31690,6 +31712,8 @@ declare namespace Excel {
|
|
|
31690
31712
|
*
|
|
31691
31713
|
* @remarks
|
|
31692
31714
|
* [Api set: ExcelApi 1.19]
|
|
31715
|
+
*
|
|
31716
|
+
* This property isn't supported in Excel on the web.
|
|
31693
31717
|
*/
|
|
31694
31718
|
culture: string;
|
|
31695
31719
|
}
|
|
@@ -60620,6 +60644,8 @@ declare namespace Excel {
|
|
|
60620
60644
|
*
|
|
60621
60645
|
* @remarks
|
|
60622
60646
|
* [Api set: ExcelApi 1.19]
|
|
60647
|
+
*
|
|
60648
|
+
* This class isn't supported in Excel on the web.
|
|
60623
60649
|
*/
|
|
60624
60650
|
class LinkedEntityDataDomain extends OfficeExtension.ClientObject {
|
|
60625
60651
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -60630,6 +60656,8 @@ declare namespace Excel {
|
|
|
60630
60656
|
*
|
|
60631
60657
|
* @remarks
|
|
60632
60658
|
* [Api set: ExcelApi 1.19]
|
|
60659
|
+
*
|
|
60660
|
+
* This property isn't supported in Excel on the web.
|
|
60633
60661
|
*/
|
|
60634
60662
|
readonly dataProvider: string;
|
|
60635
60663
|
/**
|
|
@@ -60638,6 +60666,8 @@ declare namespace Excel {
|
|
|
60638
60666
|
*
|
|
60639
60667
|
* @remarks
|
|
60640
60668
|
* [Api set: ExcelApi 1.19]
|
|
60669
|
+
*
|
|
60670
|
+
* This property isn't supported in Excel on the web.
|
|
60641
60671
|
*/
|
|
60642
60672
|
readonly id: string;
|
|
60643
60673
|
/**
|
|
@@ -60646,6 +60676,8 @@ declare namespace Excel {
|
|
|
60646
60676
|
*
|
|
60647
60677
|
* @remarks
|
|
60648
60678
|
* [Api set: ExcelApi 1.19]
|
|
60679
|
+
*
|
|
60680
|
+
* This property isn't supported in Excel on the web.
|
|
60649
60681
|
*/
|
|
60650
60682
|
readonly lastRefreshed: Date;
|
|
60651
60683
|
/**
|
|
@@ -60655,6 +60687,8 @@ declare namespace Excel {
|
|
|
60655
60687
|
*
|
|
60656
60688
|
* @remarks
|
|
60657
60689
|
* [Api set: ExcelApi 1.19]
|
|
60690
|
+
*
|
|
60691
|
+
* This property isn't supported in Excel on the web.
|
|
60658
60692
|
*/
|
|
60659
60693
|
readonly loadFunctionId: string;
|
|
60660
60694
|
/**
|
|
@@ -60663,6 +60697,8 @@ declare namespace Excel {
|
|
|
60663
60697
|
*
|
|
60664
60698
|
* @remarks
|
|
60665
60699
|
* [Api set: ExcelApi 1.19]
|
|
60700
|
+
*
|
|
60701
|
+
* This property isn't supported in Excel on the web.
|
|
60666
60702
|
*/
|
|
60667
60703
|
readonly name: string;
|
|
60668
60704
|
/**
|
|
@@ -60671,6 +60707,8 @@ declare namespace Excel {
|
|
|
60671
60707
|
*
|
|
60672
60708
|
* @remarks
|
|
60673
60709
|
* [Api set: ExcelApi 1.19]
|
|
60710
|
+
*
|
|
60711
|
+
* This property isn't supported in Excel on the web.
|
|
60674
60712
|
*/
|
|
60675
60713
|
readonly periodicRefreshInterval: number;
|
|
60676
60714
|
/**
|
|
@@ -60680,6 +60718,8 @@ declare namespace Excel {
|
|
|
60680
60718
|
*
|
|
60681
60719
|
* @remarks
|
|
60682
60720
|
* [Api set: ExcelApi 1.19]
|
|
60721
|
+
*
|
|
60722
|
+
* This property isn't supported in Excel on the web.
|
|
60683
60723
|
*/
|
|
60684
60724
|
refreshMode: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
60685
60725
|
/**
|
|
@@ -60689,6 +60729,8 @@ declare namespace Excel {
|
|
|
60689
60729
|
*
|
|
60690
60730
|
* @remarks
|
|
60691
60731
|
* [Api set: ExcelApi 1.19]
|
|
60732
|
+
*
|
|
60733
|
+
* This property isn't supported in Excel on the web.
|
|
60692
60734
|
*/
|
|
60693
60735
|
readonly serviceId: number;
|
|
60694
60736
|
/**
|
|
@@ -60697,6 +60739,8 @@ declare namespace Excel {
|
|
|
60697
60739
|
*
|
|
60698
60740
|
* @remarks
|
|
60699
60741
|
* [Api set: ExcelApi 1.19]
|
|
60742
|
+
*
|
|
60743
|
+
* This property isn't supported in Excel on the web.
|
|
60700
60744
|
*/
|
|
60701
60745
|
readonly supportedRefreshModes: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
60702
60746
|
/**
|
|
@@ -60706,6 +60750,8 @@ declare namespace Excel {
|
|
|
60706
60750
|
*
|
|
60707
60751
|
* @remarks
|
|
60708
60752
|
* [Api set: ExcelApi 1.19]
|
|
60753
|
+
*
|
|
60754
|
+
* This method isn't supported in Excel on the web.
|
|
60709
60755
|
*/
|
|
60710
60756
|
delete(): void;
|
|
60711
60757
|
/**
|
|
@@ -60714,6 +60760,8 @@ declare namespace Excel {
|
|
|
60714
60760
|
*
|
|
60715
60761
|
* @remarks
|
|
60716
60762
|
* [Api set: ExcelApi 1.19]
|
|
60763
|
+
*
|
|
60764
|
+
* This method isn't supported in Excel on the web.
|
|
60717
60765
|
*/
|
|
60718
60766
|
refresh(): void;
|
|
60719
60767
|
/**
|
|
@@ -60748,6 +60796,8 @@ declare namespace Excel {
|
|
|
60748
60796
|
*
|
|
60749
60797
|
* @remarks
|
|
60750
60798
|
* [Api set: ExcelApi 1.19]
|
|
60799
|
+
*
|
|
60800
|
+
* This interface isn't supported in Excel on the web.
|
|
60751
60801
|
*/
|
|
60752
60802
|
interface LinkedEntityDataDomainAddedEventArgs {
|
|
60753
60803
|
/**
|
|
@@ -60756,6 +60806,8 @@ declare namespace Excel {
|
|
|
60756
60806
|
*
|
|
60757
60807
|
* @remarks
|
|
60758
60808
|
* [Api set: ExcelApi 1.19]
|
|
60809
|
+
*
|
|
60810
|
+
* This property isn't supported in Excel on the web.
|
|
60759
60811
|
*/
|
|
60760
60812
|
id?: string;
|
|
60761
60813
|
/**
|
|
@@ -60763,6 +60815,8 @@ declare namespace Excel {
|
|
|
60763
60815
|
*
|
|
60764
60816
|
* @remarks
|
|
60765
60817
|
* [Api set: ExcelApi 1.19]
|
|
60818
|
+
*
|
|
60819
|
+
* This property isn't supported in Excel on the web.
|
|
60766
60820
|
*/
|
|
60767
60821
|
serviceId: number;
|
|
60768
60822
|
/**
|
|
@@ -60770,6 +60824,8 @@ declare namespace Excel {
|
|
|
60770
60824
|
*
|
|
60771
60825
|
* @remarks
|
|
60772
60826
|
* [Api set: ExcelApi 1.19]
|
|
60827
|
+
*
|
|
60828
|
+
* This property isn't supported in Excel on the web.
|
|
60773
60829
|
*/
|
|
60774
60830
|
source: Excel.EventSource | "Local" | "Remote";
|
|
60775
60831
|
/**
|
|
@@ -60777,6 +60833,8 @@ declare namespace Excel {
|
|
|
60777
60833
|
*
|
|
60778
60834
|
* @remarks
|
|
60779
60835
|
* [Api set: ExcelApi 1.19]
|
|
60836
|
+
*
|
|
60837
|
+
* This property isn't supported in Excel on the web.
|
|
60780
60838
|
*/
|
|
60781
60839
|
type: "LinkedEntityDataDomainLinkedEntityDataDomainAdded";
|
|
60782
60840
|
}
|
|
@@ -60786,6 +60844,8 @@ declare namespace Excel {
|
|
|
60786
60844
|
*
|
|
60787
60845
|
* @remarks
|
|
60788
60846
|
* [Api set: ExcelApi 1.19]
|
|
60847
|
+
*
|
|
60848
|
+
* This class isn't supported in Excel on the web.
|
|
60789
60849
|
*/
|
|
60790
60850
|
class LinkedEntityDataDomainCollection extends OfficeExtension.ClientObject {
|
|
60791
60851
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -60798,6 +60858,8 @@ declare namespace Excel {
|
|
|
60798
60858
|
*
|
|
60799
60859
|
* @remarks
|
|
60800
60860
|
* [Api set: ExcelApi 1.19]
|
|
60861
|
+
*
|
|
60862
|
+
* This method isn't supported in Excel on the web.
|
|
60801
60863
|
*
|
|
60802
60864
|
* @param options Options that are used to create the linked entity data domain to be added.
|
|
60803
60865
|
*/
|
|
@@ -60807,6 +60869,8 @@ declare namespace Excel {
|
|
|
60807
60869
|
*
|
|
60808
60870
|
* @remarks
|
|
60809
60871
|
* [Api set: ExcelApi 1.19]
|
|
60872
|
+
*
|
|
60873
|
+
* This method isn't supported in Excel on the web.
|
|
60810
60874
|
*/
|
|
60811
60875
|
getCount(): OfficeExtension.ClientResult<number>;
|
|
60812
60876
|
/**
|
|
@@ -60814,6 +60878,8 @@ declare namespace Excel {
|
|
|
60814
60878
|
*
|
|
60815
60879
|
* @remarks
|
|
60816
60880
|
* [Api set: ExcelApi 1.19]
|
|
60881
|
+
*
|
|
60882
|
+
* This method isn't supported in Excel on the web.
|
|
60817
60883
|
*
|
|
60818
60884
|
* @param id The `id` of the `LinkedEntityDataDomain` object to be retrieved.
|
|
60819
60885
|
* @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 +60890,8 @@ declare namespace Excel {
|
|
|
60824
60890
|
*
|
|
60825
60891
|
* @remarks
|
|
60826
60892
|
* [Api set: ExcelApi 1.19]
|
|
60893
|
+
*
|
|
60894
|
+
* This method isn't supported in Excel on the web.
|
|
60827
60895
|
*
|
|
60828
60896
|
* @param index The index of the linked entity data domain in the collection.
|
|
60829
60897
|
* @returns The linked entity data domain at the given index.
|
|
@@ -60834,6 +60902,8 @@ declare namespace Excel {
|
|
|
60834
60902
|
*
|
|
60835
60903
|
* @remarks
|
|
60836
60904
|
* [Api set: ExcelApi 1.19]
|
|
60905
|
+
*
|
|
60906
|
+
* This method isn't supported in Excel on the web.
|
|
60837
60907
|
*
|
|
60838
60908
|
* @param name The `name` of the `LinkedEntityDataDomain` object to be retrieved.
|
|
60839
60909
|
* @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 +60916,8 @@ declare namespace Excel {
|
|
|
60846
60916
|
*
|
|
60847
60917
|
* @remarks
|
|
60848
60918
|
* [Api set: ExcelApi 1.19]
|
|
60919
|
+
*
|
|
60920
|
+
* This method isn't supported in Excel on the web.
|
|
60849
60921
|
*
|
|
60850
60922
|
* @param name The `name` of the `LinkedEntityDataDomain` object to be retrieved.
|
|
60851
60923
|
* @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 +60930,8 @@ declare namespace Excel {
|
|
|
60858
60930
|
*
|
|
60859
60931
|
* @remarks
|
|
60860
60932
|
* [Api set: ExcelApi 1.19]
|
|
60933
|
+
*
|
|
60934
|
+
* This method isn't supported in Excel on the web.
|
|
60861
60935
|
*
|
|
60862
60936
|
* @param id The `id` of the `LinkedEntityDataDomain` object to be retrieved.
|
|
60863
60937
|
* @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 +60943,8 @@ declare namespace Excel {
|
|
|
60869
60943
|
*
|
|
60870
60944
|
* @remarks
|
|
60871
60945
|
* [Api set: ExcelApi 1.19]
|
|
60946
|
+
*
|
|
60947
|
+
* This method isn't supported in Excel on the web.
|
|
60872
60948
|
*/
|
|
60873
60949
|
refreshAll(): void;
|
|
60874
60950
|
/**
|
|
@@ -60894,6 +60970,8 @@ declare namespace Excel {
|
|
|
60894
60970
|
*
|
|
60895
60971
|
* @remarks
|
|
60896
60972
|
* [Api set: ExcelApi 1.19]
|
|
60973
|
+
*
|
|
60974
|
+
* This event isn't supported in Excel on the web.
|
|
60897
60975
|
*
|
|
60898
60976
|
* @eventproperty
|
|
60899
60977
|
*/
|
|
@@ -60903,6 +60981,8 @@ declare namespace Excel {
|
|
|
60903
60981
|
*
|
|
60904
60982
|
* @remarks
|
|
60905
60983
|
* [Api set: ExcelApi 1.19]
|
|
60984
|
+
*
|
|
60985
|
+
* This event isn't supported in Excel on the web.
|
|
60906
60986
|
*
|
|
60907
60987
|
* @eventproperty
|
|
60908
60988
|
*/
|
|
@@ -60912,6 +60992,8 @@ declare namespace Excel {
|
|
|
60912
60992
|
*
|
|
60913
60993
|
* @remarks
|
|
60914
60994
|
* [Api set: ExcelApi 1.19]
|
|
60995
|
+
*
|
|
60996
|
+
* This event isn't supported in Excel on the web.
|
|
60915
60997
|
*
|
|
60916
60998
|
* @eventproperty
|
|
60917
60999
|
*/
|
|
@@ -60927,6 +61009,8 @@ declare namespace Excel {
|
|
|
60927
61009
|
*
|
|
60928
61010
|
* @remarks
|
|
60929
61011
|
* [Api set: ExcelApi 1.19]
|
|
61012
|
+
*
|
|
61013
|
+
* This interface isn't supported in Excel on the web.
|
|
60930
61014
|
*/
|
|
60931
61015
|
interface LinkedEntityDataDomainCreateOptions {
|
|
60932
61016
|
/**
|
|
@@ -60934,6 +61018,8 @@ declare namespace Excel {
|
|
|
60934
61018
|
*
|
|
60935
61019
|
* @remarks
|
|
60936
61020
|
* [Api set: ExcelApi 1.19]
|
|
61021
|
+
*
|
|
61022
|
+
* This property isn't supported in Excel on the web.
|
|
60937
61023
|
*/
|
|
60938
61024
|
dataProvider: string;
|
|
60939
61025
|
/**
|
|
@@ -60942,6 +61028,8 @@ declare namespace Excel {
|
|
|
60942
61028
|
*
|
|
60943
61029
|
* @remarks
|
|
60944
61030
|
* [Api set: ExcelApi 1.19]
|
|
61031
|
+
*
|
|
61032
|
+
* This property isn't supported in Excel on the web.
|
|
60945
61033
|
*/
|
|
60946
61034
|
id: string;
|
|
60947
61035
|
/**
|
|
@@ -60950,6 +61038,8 @@ declare namespace Excel {
|
|
|
60950
61038
|
*
|
|
60951
61039
|
* @remarks
|
|
60952
61040
|
* [Api set: ExcelApi 1.19]
|
|
61041
|
+
*
|
|
61042
|
+
* This property isn't supported in Excel on the web.
|
|
60953
61043
|
*/
|
|
60954
61044
|
loadFunctionId: string;
|
|
60955
61045
|
/**
|
|
@@ -60958,6 +61048,8 @@ declare namespace Excel {
|
|
|
60958
61048
|
*
|
|
60959
61049
|
* @remarks
|
|
60960
61050
|
* [Api set: ExcelApi 1.19]
|
|
61051
|
+
*
|
|
61052
|
+
* This property isn't supported in Excel on the web.
|
|
60961
61053
|
*/
|
|
60962
61054
|
name: string;
|
|
60963
61055
|
/**
|
|
@@ -60967,6 +61059,8 @@ declare namespace Excel {
|
|
|
60967
61059
|
*
|
|
60968
61060
|
* @remarks
|
|
60969
61061
|
* [Api set: ExcelApi 1.19]
|
|
61062
|
+
*
|
|
61063
|
+
* This property isn't supported in Excel on the web.
|
|
60970
61064
|
*/
|
|
60971
61065
|
periodicRefreshInterval?: number;
|
|
60972
61066
|
/**
|
|
@@ -60978,6 +61072,8 @@ declare namespace Excel {
|
|
|
60978
61072
|
*
|
|
60979
61073
|
* @remarks
|
|
60980
61074
|
* [Api set: ExcelApi 1.19]
|
|
61075
|
+
*
|
|
61076
|
+
* This property isn't supported in Excel on the web.
|
|
60981
61077
|
*/
|
|
60982
61078
|
supportedRefreshModes?: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
60983
61079
|
}
|
|
@@ -60986,6 +61082,8 @@ declare namespace Excel {
|
|
|
60986
61082
|
*
|
|
60987
61083
|
* @remarks
|
|
60988
61084
|
* [Api set: ExcelApi 1.19]
|
|
61085
|
+
*
|
|
61086
|
+
* This interface isn't supported in Excel on the web.
|
|
60989
61087
|
*/
|
|
60990
61088
|
interface LinkedEntityDataDomainRefreshCompletedEventArgs {
|
|
60991
61089
|
/**
|
|
@@ -60993,6 +61091,8 @@ declare namespace Excel {
|
|
|
60993
61091
|
*
|
|
60994
61092
|
* @remarks
|
|
60995
61093
|
* [Api set: ExcelApi 1.19]
|
|
61094
|
+
*
|
|
61095
|
+
* This property isn't supported in Excel on the web.
|
|
60996
61096
|
*/
|
|
60997
61097
|
errors?: string[];
|
|
60998
61098
|
/**
|
|
@@ -61001,6 +61101,8 @@ declare namespace Excel {
|
|
|
61001
61101
|
*
|
|
61002
61102
|
* @remarks
|
|
61003
61103
|
* [Api set: ExcelApi 1.19]
|
|
61104
|
+
*
|
|
61105
|
+
* This property isn't supported in Excel on the web.
|
|
61004
61106
|
*/
|
|
61005
61107
|
id?: string;
|
|
61006
61108
|
/**
|
|
@@ -61008,6 +61110,8 @@ declare namespace Excel {
|
|
|
61008
61110
|
*
|
|
61009
61111
|
* @remarks
|
|
61010
61112
|
* [Api set: ExcelApi 1.19]
|
|
61113
|
+
*
|
|
61114
|
+
* This property isn't supported in Excel on the web.
|
|
61011
61115
|
*/
|
|
61012
61116
|
refreshed: boolean;
|
|
61013
61117
|
/**
|
|
@@ -61015,6 +61119,8 @@ declare namespace Excel {
|
|
|
61015
61119
|
*
|
|
61016
61120
|
* @remarks
|
|
61017
61121
|
* [Api set: ExcelApi 1.19]
|
|
61122
|
+
*
|
|
61123
|
+
* This property isn't supported in Excel on the web.
|
|
61018
61124
|
*/
|
|
61019
61125
|
serviceId: number;
|
|
61020
61126
|
/**
|
|
@@ -61022,6 +61128,8 @@ declare namespace Excel {
|
|
|
61022
61128
|
*
|
|
61023
61129
|
* @remarks
|
|
61024
61130
|
* [Api set: ExcelApi 1.19]
|
|
61131
|
+
*
|
|
61132
|
+
* This property isn't supported in Excel on the web.
|
|
61025
61133
|
*/
|
|
61026
61134
|
source: Excel.EventSource | "Local" | "Remote";
|
|
61027
61135
|
/**
|
|
@@ -61029,6 +61137,8 @@ declare namespace Excel {
|
|
|
61029
61137
|
*
|
|
61030
61138
|
* @remarks
|
|
61031
61139
|
* [Api set: ExcelApi 1.19]
|
|
61140
|
+
*
|
|
61141
|
+
* This property isn't supported in Excel on the web.
|
|
61032
61142
|
*/
|
|
61033
61143
|
type: "LinkedEntityDataDomainRefreshCompleted";
|
|
61034
61144
|
}
|
|
@@ -61037,12 +61147,16 @@ declare namespace Excel {
|
|
|
61037
61147
|
*
|
|
61038
61148
|
* @remarks
|
|
61039
61149
|
* [Api set: ExcelApi 1.19]
|
|
61150
|
+
*
|
|
61151
|
+
* This enum isn't supported in Excel on the web.
|
|
61040
61152
|
*/
|
|
61041
61153
|
enum LinkedEntityDataDomainRefreshMode {
|
|
61042
61154
|
/**
|
|
61043
61155
|
* Refresh mode is unknown or unsupported.
|
|
61044
61156
|
* @remarks
|
|
61045
61157
|
* [Api set: ExcelApi 1.19]
|
|
61158
|
+
*
|
|
61159
|
+
* This field isn't supported in Excel on the web.
|
|
61046
61160
|
*/
|
|
61047
61161
|
unknown = "Unknown",
|
|
61048
61162
|
/**
|
|
@@ -61050,6 +61164,8 @@ declare namespace Excel {
|
|
|
61050
61164
|
Refresh is not triggered automatically.
|
|
61051
61165
|
* @remarks
|
|
61052
61166
|
* [Api set: ExcelApi 1.19]
|
|
61167
|
+
*
|
|
61168
|
+
* This field isn't supported in Excel on the web.
|
|
61053
61169
|
*/
|
|
61054
61170
|
manual = "Manual",
|
|
61055
61171
|
/**
|
|
@@ -61057,6 +61173,8 @@ declare namespace Excel {
|
|
|
61057
61173
|
Refresh on add-in load, applicable to linked entity data domains defined by Office Add-ins.
|
|
61058
61174
|
* @remarks
|
|
61059
61175
|
* [Api set: ExcelApi 1.19]
|
|
61176
|
+
*
|
|
61177
|
+
* This field isn't supported in Excel on the web.
|
|
61060
61178
|
*/
|
|
61061
61179
|
onLoad = "OnLoad",
|
|
61062
61180
|
/**
|
|
@@ -61065,6 +61183,8 @@ declare namespace Excel {
|
|
|
61065
61183
|
For linked entity data domains defined by Office Add-ins, this value also initiates a refresh each time the add-in loads.
|
|
61066
61184
|
* @remarks
|
|
61067
61185
|
* [Api set: ExcelApi 1.19]
|
|
61186
|
+
*
|
|
61187
|
+
* This field isn't supported in Excel on the web.
|
|
61068
61188
|
*/
|
|
61069
61189
|
periodic = "Periodic"
|
|
61070
61190
|
}
|
|
@@ -61073,6 +61193,8 @@ declare namespace Excel {
|
|
|
61073
61193
|
*
|
|
61074
61194
|
* @remarks
|
|
61075
61195
|
* [Api set: ExcelApi 1.19]
|
|
61196
|
+
*
|
|
61197
|
+
* This interface isn't supported in Excel on the web.
|
|
61076
61198
|
*/
|
|
61077
61199
|
interface LinkedEntityDataDomainRefreshModeChangedEventArgs {
|
|
61078
61200
|
/**
|
|
@@ -61081,6 +61203,8 @@ declare namespace Excel {
|
|
|
61081
61203
|
*
|
|
61082
61204
|
* @remarks
|
|
61083
61205
|
* [Api set: ExcelApi 1.19]
|
|
61206
|
+
*
|
|
61207
|
+
* This property isn't supported in Excel on the web.
|
|
61084
61208
|
*/
|
|
61085
61209
|
id?: string;
|
|
61086
61210
|
/**
|
|
@@ -61088,6 +61212,8 @@ declare namespace Excel {
|
|
|
61088
61212
|
*
|
|
61089
61213
|
* @remarks
|
|
61090
61214
|
* [Api set: ExcelApi 1.19]
|
|
61215
|
+
*
|
|
61216
|
+
* This property isn't supported in Excel on the web.
|
|
61091
61217
|
*/
|
|
61092
61218
|
refreshMode: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
61093
61219
|
/**
|
|
@@ -61095,6 +61221,8 @@ declare namespace Excel {
|
|
|
61095
61221
|
*
|
|
61096
61222
|
* @remarks
|
|
61097
61223
|
* [Api set: ExcelApi 1.19]
|
|
61224
|
+
*
|
|
61225
|
+
* This property isn't supported in Excel on the web.
|
|
61098
61226
|
*/
|
|
61099
61227
|
serviceId: number;
|
|
61100
61228
|
/**
|
|
@@ -61102,6 +61230,8 @@ declare namespace Excel {
|
|
|
61102
61230
|
*
|
|
61103
61231
|
* @remarks
|
|
61104
61232
|
* [Api set: ExcelApi 1.19]
|
|
61233
|
+
*
|
|
61234
|
+
* This property isn't supported in Excel on the web.
|
|
61105
61235
|
*/
|
|
61106
61236
|
source: Excel.EventSource | "Local" | "Remote";
|
|
61107
61237
|
/**
|
|
@@ -61109,6 +61239,8 @@ declare namespace Excel {
|
|
|
61109
61239
|
*
|
|
61110
61240
|
* @remarks
|
|
61111
61241
|
* [Api set: ExcelApi 1.19]
|
|
61242
|
+
*
|
|
61243
|
+
* This property isn't supported in Excel on the web.
|
|
61112
61244
|
*/
|
|
61113
61245
|
type: "LinkedEntityDataDomainRefreshModeChanged";
|
|
61114
61246
|
}
|
|
@@ -77436,6 +77568,8 @@ declare namespace Excel {
|
|
|
77436
77568
|
*
|
|
77437
77569
|
* @remarks
|
|
77438
77570
|
* [Api set: ExcelApi 1.19]
|
|
77571
|
+
*
|
|
77572
|
+
* This property isn't supported in Excel on the web.
|
|
77439
77573
|
*/
|
|
77440
77574
|
refreshMode?: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
77441
77575
|
}
|
|
@@ -84576,6 +84710,8 @@ declare namespace Excel {
|
|
|
84576
84710
|
*
|
|
84577
84711
|
* @remarks
|
|
84578
84712
|
* [Api set: ExcelApi 1.19]
|
|
84713
|
+
*
|
|
84714
|
+
* This property isn't supported in Excel on the web.
|
|
84579
84715
|
*/
|
|
84580
84716
|
dataProvider?: string;
|
|
84581
84717
|
/**
|
|
@@ -84584,6 +84720,8 @@ declare namespace Excel {
|
|
|
84584
84720
|
*
|
|
84585
84721
|
* @remarks
|
|
84586
84722
|
* [Api set: ExcelApi 1.19]
|
|
84723
|
+
*
|
|
84724
|
+
* This property isn't supported in Excel on the web.
|
|
84587
84725
|
*/
|
|
84588
84726
|
id?: string;
|
|
84589
84727
|
/**
|
|
@@ -84592,6 +84730,8 @@ declare namespace Excel {
|
|
|
84592
84730
|
*
|
|
84593
84731
|
* @remarks
|
|
84594
84732
|
* [Api set: ExcelApi 1.19]
|
|
84733
|
+
*
|
|
84734
|
+
* This property isn't supported in Excel on the web.
|
|
84595
84735
|
*/
|
|
84596
84736
|
lastRefreshed?: Date;
|
|
84597
84737
|
/**
|
|
@@ -84601,6 +84741,8 @@ declare namespace Excel {
|
|
|
84601
84741
|
*
|
|
84602
84742
|
* @remarks
|
|
84603
84743
|
* [Api set: ExcelApi 1.19]
|
|
84744
|
+
*
|
|
84745
|
+
* This property isn't supported in Excel on the web.
|
|
84604
84746
|
*/
|
|
84605
84747
|
loadFunctionId?: string;
|
|
84606
84748
|
/**
|
|
@@ -84609,6 +84751,8 @@ declare namespace Excel {
|
|
|
84609
84751
|
*
|
|
84610
84752
|
* @remarks
|
|
84611
84753
|
* [Api set: ExcelApi 1.19]
|
|
84754
|
+
*
|
|
84755
|
+
* This property isn't supported in Excel on the web.
|
|
84612
84756
|
*/
|
|
84613
84757
|
name?: string;
|
|
84614
84758
|
/**
|
|
@@ -84617,6 +84761,8 @@ declare namespace Excel {
|
|
|
84617
84761
|
*
|
|
84618
84762
|
* @remarks
|
|
84619
84763
|
* [Api set: ExcelApi 1.19]
|
|
84764
|
+
*
|
|
84765
|
+
* This property isn't supported in Excel on the web.
|
|
84620
84766
|
*/
|
|
84621
84767
|
periodicRefreshInterval?: number;
|
|
84622
84768
|
/**
|
|
@@ -84626,6 +84772,8 @@ declare namespace Excel {
|
|
|
84626
84772
|
*
|
|
84627
84773
|
* @remarks
|
|
84628
84774
|
* [Api set: ExcelApi 1.19]
|
|
84775
|
+
*
|
|
84776
|
+
* This property isn't supported in Excel on the web.
|
|
84629
84777
|
*/
|
|
84630
84778
|
refreshMode?: Excel.LinkedEntityDataDomainRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
|
|
84631
84779
|
/**
|
|
@@ -84635,6 +84783,8 @@ declare namespace Excel {
|
|
|
84635
84783
|
*
|
|
84636
84784
|
* @remarks
|
|
84637
84785
|
* [Api set: ExcelApi 1.19]
|
|
84786
|
+
*
|
|
84787
|
+
* This property isn't supported in Excel on the web.
|
|
84638
84788
|
*/
|
|
84639
84789
|
serviceId?: number;
|
|
84640
84790
|
/**
|
|
@@ -84643,6 +84793,8 @@ declare namespace Excel {
|
|
|
84643
84793
|
*
|
|
84644
84794
|
* @remarks
|
|
84645
84795
|
* [Api set: ExcelApi 1.19]
|
|
84796
|
+
*
|
|
84797
|
+
* This property isn't supported in Excel on the web.
|
|
84646
84798
|
*/
|
|
84647
84799
|
supportedRefreshModes?: Excel.LinkedEntityDataDomainRefreshMode[];
|
|
84648
84800
|
}
|
|
@@ -96667,6 +96819,8 @@ declare namespace Excel {
|
|
|
96667
96819
|
*
|
|
96668
96820
|
* @remarks
|
|
96669
96821
|
* [Api set: ExcelApi 1.19]
|
|
96822
|
+
*
|
|
96823
|
+
* This interface isn't supported in Excel on the web.
|
|
96670
96824
|
*/
|
|
96671
96825
|
interface LinkedEntityDataDomainLoadOptions {
|
|
96672
96826
|
/**
|
|
@@ -96679,6 +96833,8 @@ declare namespace Excel {
|
|
|
96679
96833
|
*
|
|
96680
96834
|
* @remarks
|
|
96681
96835
|
* [Api set: ExcelApi 1.19]
|
|
96836
|
+
*
|
|
96837
|
+
* This property isn't supported in Excel on the web.
|
|
96682
96838
|
*/
|
|
96683
96839
|
dataProvider?: boolean;
|
|
96684
96840
|
/**
|
|
@@ -96687,6 +96843,8 @@ declare namespace Excel {
|
|
|
96687
96843
|
*
|
|
96688
96844
|
* @remarks
|
|
96689
96845
|
* [Api set: ExcelApi 1.19]
|
|
96846
|
+
*
|
|
96847
|
+
* This property isn't supported in Excel on the web.
|
|
96690
96848
|
*/
|
|
96691
96849
|
id?: boolean;
|
|
96692
96850
|
/**
|
|
@@ -96695,6 +96853,8 @@ declare namespace Excel {
|
|
|
96695
96853
|
*
|
|
96696
96854
|
* @remarks
|
|
96697
96855
|
* [Api set: ExcelApi 1.19]
|
|
96856
|
+
*
|
|
96857
|
+
* This property isn't supported in Excel on the web.
|
|
96698
96858
|
*/
|
|
96699
96859
|
lastRefreshed?: boolean;
|
|
96700
96860
|
/**
|
|
@@ -96704,6 +96864,8 @@ declare namespace Excel {
|
|
|
96704
96864
|
*
|
|
96705
96865
|
* @remarks
|
|
96706
96866
|
* [Api set: ExcelApi 1.19]
|
|
96867
|
+
*
|
|
96868
|
+
* This property isn't supported in Excel on the web.
|
|
96707
96869
|
*/
|
|
96708
96870
|
loadFunctionId?: boolean;
|
|
96709
96871
|
/**
|
|
@@ -96712,6 +96874,8 @@ declare namespace Excel {
|
|
|
96712
96874
|
*
|
|
96713
96875
|
* @remarks
|
|
96714
96876
|
* [Api set: ExcelApi 1.19]
|
|
96877
|
+
*
|
|
96878
|
+
* This property isn't supported in Excel on the web.
|
|
96715
96879
|
*/
|
|
96716
96880
|
name?: boolean;
|
|
96717
96881
|
/**
|
|
@@ -96720,6 +96884,8 @@ declare namespace Excel {
|
|
|
96720
96884
|
*
|
|
96721
96885
|
* @remarks
|
|
96722
96886
|
* [Api set: ExcelApi 1.19]
|
|
96887
|
+
*
|
|
96888
|
+
* This property isn't supported in Excel on the web.
|
|
96723
96889
|
*/
|
|
96724
96890
|
periodicRefreshInterval?: boolean;
|
|
96725
96891
|
/**
|
|
@@ -96729,6 +96895,8 @@ declare namespace Excel {
|
|
|
96729
96895
|
*
|
|
96730
96896
|
* @remarks
|
|
96731
96897
|
* [Api set: ExcelApi 1.19]
|
|
96898
|
+
*
|
|
96899
|
+
* This property isn't supported in Excel on the web.
|
|
96732
96900
|
*/
|
|
96733
96901
|
refreshMode?: boolean;
|
|
96734
96902
|
/**
|
|
@@ -96738,6 +96906,8 @@ declare namespace Excel {
|
|
|
96738
96906
|
*
|
|
96739
96907
|
* @remarks
|
|
96740
96908
|
* [Api set: ExcelApi 1.19]
|
|
96909
|
+
*
|
|
96910
|
+
* This property isn't supported in Excel on the web.
|
|
96741
96911
|
*/
|
|
96742
96912
|
serviceId?: boolean;
|
|
96743
96913
|
/**
|
|
@@ -96746,6 +96916,8 @@ declare namespace Excel {
|
|
|
96746
96916
|
*
|
|
96747
96917
|
* @remarks
|
|
96748
96918
|
* [Api set: ExcelApi 1.19]
|
|
96919
|
+
*
|
|
96920
|
+
* This property isn't supported in Excel on the web.
|
|
96749
96921
|
*/
|
|
96750
96922
|
supportedRefreshModes?: boolean;
|
|
96751
96923
|
}
|
|
@@ -96755,6 +96927,8 @@ declare namespace Excel {
|
|
|
96755
96927
|
*
|
|
96756
96928
|
* @remarks
|
|
96757
96929
|
* [Api set: ExcelApi 1.19]
|
|
96930
|
+
*
|
|
96931
|
+
* This interface isn't supported in Excel on the web.
|
|
96758
96932
|
*/
|
|
96759
96933
|
interface LinkedEntityDataDomainCollectionLoadOptions {
|
|
96760
96934
|
/**
|
|
@@ -96767,6 +96941,8 @@ declare namespace Excel {
|
|
|
96767
96941
|
*
|
|
96768
96942
|
* @remarks
|
|
96769
96943
|
* [Api set: ExcelApi 1.19]
|
|
96944
|
+
*
|
|
96945
|
+
* This property isn't supported in Excel on the web.
|
|
96770
96946
|
*/
|
|
96771
96947
|
dataProvider?: boolean;
|
|
96772
96948
|
/**
|
|
@@ -96775,6 +96951,8 @@ declare namespace Excel {
|
|
|
96775
96951
|
*
|
|
96776
96952
|
* @remarks
|
|
96777
96953
|
* [Api set: ExcelApi 1.19]
|
|
96954
|
+
*
|
|
96955
|
+
* This property isn't supported in Excel on the web.
|
|
96778
96956
|
*/
|
|
96779
96957
|
id?: boolean;
|
|
96780
96958
|
/**
|
|
@@ -96783,6 +96961,8 @@ declare namespace Excel {
|
|
|
96783
96961
|
*
|
|
96784
96962
|
* @remarks
|
|
96785
96963
|
* [Api set: ExcelApi 1.19]
|
|
96964
|
+
*
|
|
96965
|
+
* This property isn't supported in Excel on the web.
|
|
96786
96966
|
*/
|
|
96787
96967
|
lastRefreshed?: boolean;
|
|
96788
96968
|
/**
|
|
@@ -96792,6 +96972,8 @@ declare namespace Excel {
|
|
|
96792
96972
|
*
|
|
96793
96973
|
* @remarks
|
|
96794
96974
|
* [Api set: ExcelApi 1.19]
|
|
96975
|
+
*
|
|
96976
|
+
* This property isn't supported in Excel on the web.
|
|
96795
96977
|
*/
|
|
96796
96978
|
loadFunctionId?: boolean;
|
|
96797
96979
|
/**
|
|
@@ -96800,6 +96982,8 @@ declare namespace Excel {
|
|
|
96800
96982
|
*
|
|
96801
96983
|
* @remarks
|
|
96802
96984
|
* [Api set: ExcelApi 1.19]
|
|
96985
|
+
*
|
|
96986
|
+
* This property isn't supported in Excel on the web.
|
|
96803
96987
|
*/
|
|
96804
96988
|
name?: boolean;
|
|
96805
96989
|
/**
|
|
@@ -96808,6 +96992,8 @@ declare namespace Excel {
|
|
|
96808
96992
|
*
|
|
96809
96993
|
* @remarks
|
|
96810
96994
|
* [Api set: ExcelApi 1.19]
|
|
96995
|
+
*
|
|
96996
|
+
* This property isn't supported in Excel on the web.
|
|
96811
96997
|
*/
|
|
96812
96998
|
periodicRefreshInterval?: boolean;
|
|
96813
96999
|
/**
|
|
@@ -96817,6 +97003,8 @@ declare namespace Excel {
|
|
|
96817
97003
|
*
|
|
96818
97004
|
* @remarks
|
|
96819
97005
|
* [Api set: ExcelApi 1.19]
|
|
97006
|
+
*
|
|
97007
|
+
* This property isn't supported in Excel on the web.
|
|
96820
97008
|
*/
|
|
96821
97009
|
refreshMode?: boolean;
|
|
96822
97010
|
/**
|
|
@@ -96826,6 +97014,8 @@ declare namespace Excel {
|
|
|
96826
97014
|
*
|
|
96827
97015
|
* @remarks
|
|
96828
97016
|
* [Api set: ExcelApi 1.19]
|
|
97017
|
+
*
|
|
97018
|
+
* This property isn't supported in Excel on the web.
|
|
96829
97019
|
*/
|
|
96830
97020
|
serviceId?: boolean;
|
|
96831
97021
|
/**
|
|
@@ -96834,6 +97024,8 @@ declare namespace Excel {
|
|
|
96834
97024
|
*
|
|
96835
97025
|
* @remarks
|
|
96836
97026
|
* [Api set: ExcelApi 1.19]
|
|
97027
|
+
*
|
|
97028
|
+
* This property isn't supported in Excel on the web.
|
|
96837
97029
|
*/
|
|
96838
97030
|
supportedRefreshModes?: boolean;
|
|
96839
97031
|
}
|
|
@@ -166287,6 +166479,8 @@ declare namespace PowerPoint {
|
|
|
166287
166479
|
*
|
|
166288
166480
|
* @remarks
|
|
166289
166481
|
* [Api set: PowerPointApi 1.8]
|
|
166482
|
+
*
|
|
166483
|
+
* This method is optimized to export a single slide. Exporting multiple slides can impact performance.
|
|
166290
166484
|
*/
|
|
166291
166485
|
exportAsBase64(): OfficeExtension.ClientResult<string>;
|
|
166292
166486
|
/**
|
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.623",
|
|
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": "dd7091b87044e988c50e2ab57a7ca80bfe236141183e05c9a4f109b9aa02f46b",
|
|
50
50
|
"typeScriptVersion": "5.2",
|
|
51
51
|
"nonNpm": true
|
|
52
52
|
}
|