@types/office-js 1.0.306 → 1.0.308
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 +85 -43
- office-js/package.json +2 -2
office-js/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Office.js (https://github.com/OfficeD
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 20 Dec 2022 19:02:32 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Excel`, `Office`, `OfficeCore`, `OfficeExtension`, `OneNote`, `PowerPoint`, `Visio`, `Word`
|
|
14
14
|
|
office-js/index.d.ts
CHANGED
|
@@ -10497,16 +10497,19 @@ declare namespace Office {
|
|
|
10497
10497
|
/**
|
|
10498
10498
|
* Asynchronously loads custom properties for this add-in on the selected item.
|
|
10499
10499
|
*
|
|
10500
|
-
* Custom properties are stored as key
|
|
10501
|
-
* This method returns a
|
|
10502
|
-
* current item and the current add-in. Custom properties
|
|
10500
|
+
* Custom properties are stored as key-value pairs on a per-app, per-item basis.
|
|
10501
|
+
* This method returns a {@link Office.CustomProperties | CustomProperties} object in the callback, which provides methods to access the custom properties specific to the
|
|
10502
|
+
* current item and the current add-in. Custom properties aren't encrypted on the item, so this shouldn't be used as secure storage.
|
|
10503
10503
|
*
|
|
10504
10504
|
* The custom properties are provided as a `CustomProperties` object in the `asyncResult.value` property.
|
|
10505
|
-
* This object can be used to get, set, and remove custom properties from the item
|
|
10506
|
-
* the server.
|
|
10505
|
+
* This object can be used to get, set, save, and remove custom properties from the mail item.
|
|
10507
10506
|
*
|
|
10508
10507
|
* @remarks
|
|
10508
|
+
* [Api set: Mailbox 1.1]
|
|
10509
10509
|
*
|
|
10510
|
+
* To learn more about custom properties, see
|
|
10511
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/metadata-for-an-outlook-add-in | Get and set add-in metadata for an Outlook add-in}.
|
|
10512
|
+
*
|
|
10510
10513
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
10511
10514
|
*
|
|
10512
10515
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
|
|
@@ -11772,16 +11775,19 @@ declare namespace Office {
|
|
|
11772
11775
|
/**
|
|
11773
11776
|
* Asynchronously loads custom properties for this add-in on the selected item.
|
|
11774
11777
|
*
|
|
11775
|
-
* Custom properties are stored as key
|
|
11776
|
-
* This method returns a
|
|
11777
|
-
* current item and the current add-in. Custom properties
|
|
11778
|
+
* Custom properties are stored as key-value pairs on a per-app, per-item basis.
|
|
11779
|
+
* This method returns a {@link Office.CustomProperties | CustomProperties} object in the callback, which provides methods to access the custom properties specific to the
|
|
11780
|
+
* current item and the current add-in. Custom properties aren't encrypted on the item, so this shouldn't be used as secure storage.
|
|
11778
11781
|
*
|
|
11779
|
-
* The custom properties are provided as a `CustomProperties` object in the asyncResult.value property.
|
|
11780
|
-
* This object can be used to get, set, and remove custom properties from the item
|
|
11781
|
-
* the server.
|
|
11782
|
+
* The custom properties are provided as a `CustomProperties` object in the `asyncResult.value` property.
|
|
11783
|
+
* This object can be used to get, set, save, and remove custom properties from the mail item.
|
|
11782
11784
|
*
|
|
11783
11785
|
* @remarks
|
|
11786
|
+
* [Api set: Mailbox 1.1]
|
|
11784
11787
|
*
|
|
11788
|
+
* To learn more about custom properties, see
|
|
11789
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/metadata-for-an-outlook-add-in | Get and set add-in metadata for an Outlook add-in}.
|
|
11790
|
+
*
|
|
11785
11791
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
11786
11792
|
*
|
|
11787
11793
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Attendee
|
|
@@ -12644,15 +12650,27 @@ declare namespace Office {
|
|
|
12644
12650
|
urls: string[];
|
|
12645
12651
|
}
|
|
12646
12652
|
/**
|
|
12647
|
-
* The `CustomProperties` object represents custom properties that are specific to a particular item and specific to
|
|
12648
|
-
* For example, there might be a need for
|
|
12649
|
-
* If the user revisits the same message in the future and activates the
|
|
12650
|
-
* been saved as custom properties.
|
|
12653
|
+
* The `CustomProperties` object represents custom properties that are specific to a particular mail item and specific to an Outlook add-in.
|
|
12654
|
+
* For example, there might be a need for an add-in to save some data that's specific to the current message that activated the add-in.
|
|
12655
|
+
* If the user revisits the same message in the future and activates the add-in again, the add-in will be able to retrieve the data that had
|
|
12656
|
+
* been saved as custom properties.
|
|
12651
12657
|
*
|
|
12652
|
-
*
|
|
12658
|
+
* To learn more about `CustomProperties`, see
|
|
12659
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/metadata-for-an-outlook-add-in | Get and set add-in metadata for an Outlook add-in}.
|
|
12653
12660
|
*
|
|
12654
12661
|
* @remarks
|
|
12662
|
+
* [Api set: Mailbox 1.1]
|
|
12663
|
+
*
|
|
12664
|
+
* When using custom properties in your add-in, keep in mind that:
|
|
12665
|
+
*
|
|
12666
|
+
* - Custom properties saved while in compose mode aren't transmitted to recipients of the mail item. When a message or appointment with custom
|
|
12667
|
+
* properties is sent, its properties can be accessed from the item in the Sent Items folder.
|
|
12668
|
+
* If you want to make custom data accessible to recipients, consider using {@link Office.InternetHeaders | InternetHeaders} instead.
|
|
12669
|
+
*
|
|
12670
|
+
* - The maximum length of a `CustomProperties` JSON object is 2500 characters.
|
|
12655
12671
|
*
|
|
12672
|
+
* - Outlook on Mac doesn't cache custom properties. If the user's network goes down, mail add-ins can't access their custom properties.
|
|
12673
|
+
*
|
|
12656
12674
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
12657
12675
|
*
|
|
12658
12676
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
@@ -12664,7 +12682,8 @@ declare namespace Office {
|
|
|
12664
12682
|
* @returns The value of the specified custom property.
|
|
12665
12683
|
*
|
|
12666
12684
|
* @remarks
|
|
12667
|
-
*
|
|
12685
|
+
* [Api set: Mailbox 1.1]
|
|
12686
|
+
*
|
|
12668
12687
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
12669
12688
|
*
|
|
12670
12689
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
@@ -12706,7 +12725,7 @@ declare namespace Office {
|
|
|
12706
12725
|
*/
|
|
12707
12726
|
remove(name: string): void;
|
|
12708
12727
|
/**
|
|
12709
|
-
* Saves
|
|
12728
|
+
* Saves custom properties to a message or appointment.
|
|
12710
12729
|
*
|
|
12711
12730
|
* You must call the `saveAsync` method to persist any changes made with the `set` method or the `remove` method of the `CustomProperties` object.
|
|
12712
12731
|
* The saving action is asynchronous.
|
|
@@ -12718,7 +12737,11 @@ declare namespace Office {
|
|
|
12718
12737
|
* Your callback function should handle this error accordingly.
|
|
12719
12738
|
*
|
|
12720
12739
|
* @remarks
|
|
12721
|
-
*
|
|
12740
|
+
* [Api set: Mailbox 1.1]
|
|
12741
|
+
*
|
|
12742
|
+
* **Important**: In Outlook on Windows, custom properties saved while in compose mode only persist after the item being composed is closed or
|
|
12743
|
+
* after `Office.context.mailbox.item.saveAsync` is called.
|
|
12744
|
+
*
|
|
12722
12745
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
12723
12746
|
*
|
|
12724
12747
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
@@ -12729,7 +12752,7 @@ declare namespace Office {
|
|
|
12729
12752
|
*/
|
|
12730
12753
|
saveAsync(callback: (asyncResult: Office.AsyncResult<void>) => void, asyncContext?: any): void;
|
|
12731
12754
|
/**
|
|
12732
|
-
* Saves
|
|
12755
|
+
* Saves custom properties to a message or appointment.
|
|
12733
12756
|
*
|
|
12734
12757
|
* You must call the `saveAsync` method to persist any changes made with the `set` method or the `remove` method of the `CustomProperties` object.
|
|
12735
12758
|
* The saving action is asynchronous.
|
|
@@ -12741,7 +12764,8 @@ declare namespace Office {
|
|
|
12741
12764
|
* Your callback function should handle this error accordingly.
|
|
12742
12765
|
*
|
|
12743
12766
|
* @remarks
|
|
12744
|
-
*
|
|
12767
|
+
* [Api set: Mailbox 1.1]
|
|
12768
|
+
*
|
|
12745
12769
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
12746
12770
|
*
|
|
12747
12771
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
@@ -12752,14 +12776,16 @@ declare namespace Office {
|
|
|
12752
12776
|
/**
|
|
12753
12777
|
* Sets the specified property to the specified value.
|
|
12754
12778
|
*
|
|
12755
|
-
* The `set` method sets the specified property to the specified value.
|
|
12779
|
+
* The `set` method sets the specified property to the specified value. To ensure that the set property and value persist on the mail item,
|
|
12780
|
+
* you must call the `saveAsync` method.
|
|
12756
12781
|
*
|
|
12757
12782
|
* The `set` method creates a new property if the specified property does not already exist;
|
|
12758
12783
|
* otherwise, the existing value is replaced with the new value.
|
|
12759
12784
|
* The `value` parameter can be of any type; however, it is always passed to the server as a string.
|
|
12760
12785
|
*
|
|
12761
12786
|
* @remarks
|
|
12762
|
-
*
|
|
12787
|
+
* [Api set: Mailbox 1.1]
|
|
12788
|
+
*
|
|
12763
12789
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
12764
12790
|
*
|
|
12765
12791
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
@@ -15575,16 +15601,19 @@ declare namespace Office {
|
|
|
15575
15601
|
/**
|
|
15576
15602
|
* Asynchronously loads custom properties for this add-in on the selected item.
|
|
15577
15603
|
*
|
|
15578
|
-
* Custom properties are stored as key
|
|
15579
|
-
* This method returns a
|
|
15580
|
-
* current item and the current add-in. Custom properties
|
|
15604
|
+
* Custom properties are stored as key-value pairs on a per-app, per-item basis.
|
|
15605
|
+
* This method returns a {@link Office.CustomProperties | CustomProperties} object in the callback, which provides methods to access the custom properties specific to the
|
|
15606
|
+
* current item and the current add-in. Custom properties aren't encrypted on the item, so this shouldn't be used as secure storage.
|
|
15581
15607
|
*
|
|
15582
15608
|
* The custom properties are provided as a `CustomProperties` object in the `asyncResult.value` property.
|
|
15583
|
-
* This object can be used to get, set, and remove custom properties from the item
|
|
15584
|
-
* the server.
|
|
15609
|
+
* This object can be used to get, set, save, and remove custom properties from the mail item.
|
|
15585
15610
|
*
|
|
15586
15611
|
* @remarks
|
|
15612
|
+
* [Api set: Mailbox 1.1]
|
|
15587
15613
|
*
|
|
15614
|
+
* To learn more about custom properties, see
|
|
15615
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/metadata-for-an-outlook-add-in | Get and set add-in metadata for an Outlook add-in}.
|
|
15616
|
+
*
|
|
15588
15617
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
15589
15618
|
*
|
|
15590
15619
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
|
|
@@ -16762,15 +16791,19 @@ declare namespace Office {
|
|
|
16762
16791
|
/**
|
|
16763
16792
|
* Asynchronously loads custom properties for this add-in on the selected item.
|
|
16764
16793
|
*
|
|
16765
|
-
* Custom properties are stored as key
|
|
16766
|
-
* This method returns a
|
|
16767
|
-
* current item and the current add-in. Custom properties
|
|
16794
|
+
* Custom properties are stored as key-value pairs on a per-app, per-item basis.
|
|
16795
|
+
* This method returns a {@link Office.CustomProperties | CustomProperties} object in the callback, which provides methods to access the custom properties specific to the
|
|
16796
|
+
* current item and the current add-in. Custom properties aren't encrypted on the item, so this shouldn't be used as secure storage.
|
|
16768
16797
|
*
|
|
16769
16798
|
* The custom properties are provided as a `CustomProperties` object in the `asyncResult.value` property.
|
|
16770
|
-
* This object can be used to get, set, and remove custom properties from the item
|
|
16799
|
+
* This object can be used to get, set, save, and remove custom properties from the mail item.
|
|
16771
16800
|
*
|
|
16772
16801
|
* @remarks
|
|
16802
|
+
* [Api set: Mailbox 1.1]
|
|
16773
16803
|
*
|
|
16804
|
+
* To learn more about custom properties, see
|
|
16805
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/metadata-for-an-outlook-add-in | Get and set add-in metadata for an Outlook add-in}.
|
|
16806
|
+
*
|
|
16774
16807
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
16775
16808
|
*
|
|
16776
16809
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
|
|
@@ -17799,26 +17832,30 @@ declare namespace Office {
|
|
|
17799
17832
|
* The settings created by using the methods of the `RoamingSettings` object are saved per add-in and per user.
|
|
17800
17833
|
* That is, they are available only to the add-in that created them, and only from the user's mailbox in which they are saved.
|
|
17801
17834
|
*
|
|
17802
|
-
* While the Outlook add-in API limits access to these settings to only the add-in that created them, these settings
|
|
17835
|
+
* While the Outlook add-in API limits access to these settings to only the add-in that created them, these settings shouldn't be considered
|
|
17803
17836
|
* secure storage. They can be accessed by Exchange Web Services or Extended MAPI.
|
|
17804
|
-
* They
|
|
17837
|
+
* They shouldn't be used to store sensitive information, such as user credentials or security tokens.
|
|
17805
17838
|
*
|
|
17806
17839
|
* The name of a setting is a String, while the value can be a String, Number, Boolean, null, Object, or Array.
|
|
17807
17840
|
*
|
|
17808
17841
|
* The `RoamingSettings` object is accessible via the `roamingSettings` property in the `Office.context` namespace.
|
|
17842
|
+
*
|
|
17843
|
+
* To learn more about `RoamingSettings`, see
|
|
17844
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/metadata-for-an-outlook-add-in | Get and set add-in metadata for an Outlook add-in}.
|
|
17845
|
+
*
|
|
17846
|
+
* @remarks
|
|
17847
|
+
* [Api set: Mailbox 1.1]
|
|
17809
17848
|
*
|
|
17810
17849
|
* **Important**:
|
|
17811
17850
|
*
|
|
17812
17851
|
* - The `RoamingSettings` object is initialized from the persisted storage only when the add-in is first loaded.
|
|
17813
|
-
* For task panes, this means that it
|
|
17852
|
+
* For task panes, this means that it's only initialized when the task pane first opens.
|
|
17814
17853
|
* If the task pane navigates to another page or reloads the current page, the in-memory object is reset to its initial values, even if
|
|
17815
17854
|
* your add-in has persisted changes.
|
|
17816
17855
|
* The persisted changes will not be available until the task pane (or item in the case of UI-less add-ins) is closed and reopened.
|
|
17817
17856
|
*
|
|
17818
17857
|
* - When set and saved through Outlook on Windows or Mac, these settings are reflected in Outlook on the web only after a browser refresh.
|
|
17819
|
-
*
|
|
17820
|
-
* @remarks
|
|
17821
|
-
*
|
|
17858
|
+
*
|
|
17822
17859
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `Restricted`
|
|
17823
17860
|
*
|
|
17824
17861
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
@@ -17830,6 +17867,7 @@ declare namespace Office {
|
|
|
17830
17867
|
* @returns Type: String | Number | Boolean | Object | Array
|
|
17831
17868
|
*
|
|
17832
17869
|
* @remarks
|
|
17870
|
+
* [Api set: Mailbox 1.1]
|
|
17833
17871
|
*
|
|
17834
17872
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `Restricted`
|
|
17835
17873
|
*
|
|
@@ -17839,9 +17877,10 @@ declare namespace Office {
|
|
|
17839
17877
|
*/
|
|
17840
17878
|
get(name: string): any;
|
|
17841
17879
|
/**
|
|
17842
|
-
* Removes the specified setting
|
|
17880
|
+
* Removes the specified setting.
|
|
17843
17881
|
*
|
|
17844
17882
|
* @remarks
|
|
17883
|
+
* [Api set: Mailbox 1.1]
|
|
17845
17884
|
*
|
|
17846
17885
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `Restricted`
|
|
17847
17886
|
*
|
|
@@ -17853,11 +17892,12 @@ declare namespace Office {
|
|
|
17853
17892
|
/**
|
|
17854
17893
|
* Saves the settings.
|
|
17855
17894
|
*
|
|
17856
|
-
* Any settings previously saved by an add-in are loaded when it
|
|
17895
|
+
* Any settings previously saved by an add-in are loaded when it's initialized, so during the lifetime of the session you can just use
|
|
17857
17896
|
* the set and get methods to work with the in-memory copy of the settings property bag.
|
|
17858
|
-
* When you want to persist the settings so that they
|
|
17897
|
+
* When you want to persist the settings so that they're available the next time the add-in is used, use the `saveAsync` method.
|
|
17859
17898
|
*
|
|
17860
17899
|
* @remarks
|
|
17900
|
+
* [Api set: Mailbox 1.1]
|
|
17861
17901
|
*
|
|
17862
17902
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `Restricted`
|
|
17863
17903
|
*
|
|
@@ -17870,7 +17910,7 @@ declare namespace Office {
|
|
|
17870
17910
|
/**
|
|
17871
17911
|
* Sets or creates the specified setting.
|
|
17872
17912
|
*
|
|
17873
|
-
* The `set` method creates a new setting of the specified name if it
|
|
17913
|
+
* The `set` method creates a new setting of the specified name if it doesn't already exist, or sets an existing setting of the specified name.
|
|
17874
17914
|
* The value is stored in the document as the serialized JSON representation of its data type.
|
|
17875
17915
|
*
|
|
17876
17916
|
* A maximum of 32KB is available for the settings of each add-in.
|
|
@@ -17878,6 +17918,7 @@ declare namespace Office {
|
|
|
17878
17918
|
* Any changes made to settings using the `set` method will not be saved to the server until the `saveAsync` method is called.
|
|
17879
17919
|
*
|
|
17880
17920
|
* @remarks
|
|
17921
|
+
* [Api set: Mailbox 1.1]
|
|
17881
17922
|
*
|
|
17882
17923
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `Restricted`
|
|
17883
17924
|
*
|
|
@@ -25797,7 +25838,8 @@ declare namespace Excel {
|
|
|
25797
25838
|
/**
|
|
25798
25839
|
*
|
|
25799
25840
|
* Creates and opens a new workbook. Optionally, the workbook can be pre-populated with a base64-encoded .xlsx file.
|
|
25800
|
-
*
|
|
25841
|
+
* Note: Macros can be a security risk. If this API is used to create a workbook that includes a macro, the add-in user will be prompted with a "Trust this add-in?" dialog in the Excel UI. The user must select the "Trust add-in" button to proceed.
|
|
25842
|
+
*
|
|
25801
25843
|
* [Api set: ExcelApi 1.8]
|
|
25802
25844
|
*
|
|
25803
25845
|
* @param base64File Optional. The base64 encoded .xlsx file. The default value is null.
|
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.308",
|
|
4
4
|
"description": "TypeScript definitions for Office.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "f00d5d22acdd4e78ea3669f61aad425dd99a685be7473207cb28c8a71d48a06f",
|
|
49
49
|
"typeScriptVersion": "4.2"
|
|
50
50
|
}
|