@types/office-js-preview 1.0.477 → 1.0.478
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 +113 -26
- 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: Mon,
|
|
11
|
+
* Last updated: Mon, 17 Jun 2024 18:08:12 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -90678,11 +90678,11 @@ declare namespace Word {
|
|
|
90678
90678
|
* [Api set: WordApi 1.1]
|
|
90679
90679
|
*
|
|
90680
90680
|
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support was added in WordApi 1.7.
|
|
90681
|
-
* `DropDownList` support
|
|
90681
|
+
* `DropDownList` and `ComboBox` support are currently in preview.
|
|
90682
90682
|
*
|
|
90683
|
-
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', 'CheckBox', or '
|
|
90683
|
+
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', 'CheckBox', 'DropDownList', or 'ComboBox'. The default is 'RichText'.
|
|
90684
90684
|
*/
|
|
90685
|
-
insertContentControl(contentControlType?: Word.ContentControlType.richText | Word.ContentControlType.plainText | Word.ContentControlType.checkBox | Word.ContentControlType.dropDownList | "RichText" | "PlainText" | "CheckBox" | "DropDownList"): Word.ContentControl;
|
|
90685
|
+
insertContentControl(contentControlType?: Word.ContentControlType.richText | Word.ContentControlType.plainText | Word.ContentControlType.checkBox | Word.ContentControlType.dropDownList | Word.ContentControlType.comboBox | "RichText" | "PlainText" | "CheckBox" | "DropDownList" | "ComboBox"): Word.ContentControl;
|
|
90686
90686
|
/**
|
|
90687
90687
|
* Inserts a document into the body at the specified location.
|
|
90688
90688
|
*
|
|
@@ -91634,6 +91634,14 @@ declare namespace Word {
|
|
|
91634
91634
|
* [Api set: WordApi 1.7]
|
|
91635
91635
|
*/
|
|
91636
91636
|
readonly checkboxContentControl: Word.CheckboxContentControl;
|
|
91637
|
+
/**
|
|
91638
|
+
* Specifies the combo box-related data if the content control's type is 'ComboBox'. It's `null` otherwise.
|
|
91639
|
+
*
|
|
91640
|
+
* @remarks
|
|
91641
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
91642
|
+
* @beta
|
|
91643
|
+
*/
|
|
91644
|
+
readonly comboBoxContentControl: Word.ComboBoxContentControl;
|
|
91637
91645
|
/**
|
|
91638
91646
|
* Gets the collection of content control objects in the content control.
|
|
91639
91647
|
*
|
|
@@ -92359,7 +92367,7 @@ declare namespace Word {
|
|
|
92359
92367
|
toJSON(): Word.Interfaces.ContentControlCollectionData;
|
|
92360
92368
|
}
|
|
92361
92369
|
/**
|
|
92362
|
-
* Represents a list item in a dropdown list content control.
|
|
92370
|
+
* Represents a list item in a dropdown list or combo box content control.
|
|
92363
92371
|
*
|
|
92364
92372
|
* @remarks
|
|
92365
92373
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -92369,7 +92377,7 @@ declare namespace Word {
|
|
|
92369
92377
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
92370
92378
|
context: RequestContext;
|
|
92371
92379
|
/**
|
|
92372
|
-
* Specifies the display text of a list item for a dropdown list content control.
|
|
92380
|
+
* Specifies the display text of a list item for a dropdown list or combo box content control.
|
|
92373
92381
|
*
|
|
92374
92382
|
* @remarks
|
|
92375
92383
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -92385,7 +92393,7 @@ declare namespace Word {
|
|
|
92385
92393
|
*/
|
|
92386
92394
|
index: number;
|
|
92387
92395
|
/**
|
|
92388
|
-
* Specifies the programmatic value of a list item for a dropdown list content control.
|
|
92396
|
+
* Specifies the programmatic value of a list item for a dropdown list or combo box content control.
|
|
92389
92397
|
*
|
|
92390
92398
|
* @remarks
|
|
92391
92399
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -92452,7 +92460,7 @@ declare namespace Word {
|
|
|
92452
92460
|
toJSON(): Word.Interfaces.ContentControlListItemData;
|
|
92453
92461
|
}
|
|
92454
92462
|
/**
|
|
92455
|
-
* Contains a collection of {@link Word.ContentControlListItem} objects that represent the items in a dropdown list content control.
|
|
92463
|
+
* Contains a collection of {@link Word.ContentControlListItem} objects that represent the items in a dropdown list or combo box content control.
|
|
92456
92464
|
*
|
|
92457
92465
|
* @remarks
|
|
92458
92466
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -92521,12 +92529,13 @@ declare namespace Word {
|
|
|
92521
92529
|
*/
|
|
92522
92530
|
interface ContentControlOptions {
|
|
92523
92531
|
/**
|
|
92524
|
-
* An array of content control types, item must be 'RichText', 'PlainText', or '
|
|
92532
|
+
* An array of content control types, item must be 'RichText', 'PlainText', 'CheckBox', 'DropDownList', or 'ComboBox'.
|
|
92525
92533
|
*
|
|
92526
92534
|
* @remarks
|
|
92527
92535
|
* [Api set: WordApi 1.5]
|
|
92528
92536
|
*
|
|
92529
|
-
* Note:
|
|
92537
|
+
* Note: 'PlainText' support was added in WordApi 1.5. 'CheckBox' support was added in WordApi 1.7.
|
|
92538
|
+
* 'DropDownList' and 'ComboBox' support are currently in preview.
|
|
92530
92539
|
*/
|
|
92531
92540
|
types: Word.ContentControlType[];
|
|
92532
92541
|
}
|
|
@@ -93986,6 +93995,73 @@ declare namespace Word {
|
|
|
93986
93995
|
*/
|
|
93987
93996
|
toJSON(): Word.Interfaces.DropDownListContentControlData;
|
|
93988
93997
|
}
|
|
93998
|
+
/**
|
|
93999
|
+
* The data specific to content controls of type 'ComboBox'.
|
|
94000
|
+
*
|
|
94001
|
+
* @remarks
|
|
94002
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
94003
|
+
* @beta
|
|
94004
|
+
*/
|
|
94005
|
+
class ComboBoxContentControl extends OfficeExtension.ClientObject {
|
|
94006
|
+
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
94007
|
+
context: RequestContext;
|
|
94008
|
+
/**
|
|
94009
|
+
* Gets the collection of list items in the combo box content control.
|
|
94010
|
+
*
|
|
94011
|
+
* @remarks
|
|
94012
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
94013
|
+
* @beta
|
|
94014
|
+
*/
|
|
94015
|
+
readonly listItems: Word.ContentControlListItemCollection;
|
|
94016
|
+
/**
|
|
94017
|
+
* Adds a new list item to this combo box content control and returns a {@link Word.ContentControlListItem} object.
|
|
94018
|
+
*
|
|
94019
|
+
* @remarks
|
|
94020
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
94021
|
+
* @beta
|
|
94022
|
+
*
|
|
94023
|
+
* @param displayText Required. Display text of the list item.
|
|
94024
|
+
* @param value Optional. Value of the list item.
|
|
94025
|
+
* @param index Optional. Index location of the new item in the list. If an item exists at the position specified, the existing item is pushed down in the list. If omitted, the new item is added to the end of the list.
|
|
94026
|
+
*/
|
|
94027
|
+
addListItem(displayText: string, value?: string, index?: number): Word.ContentControlListItem;
|
|
94028
|
+
/**
|
|
94029
|
+
* Deletes all list items in this combo box content control.
|
|
94030
|
+
*
|
|
94031
|
+
* @remarks
|
|
94032
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
94033
|
+
* @beta
|
|
94034
|
+
*/
|
|
94035
|
+
deleteAllListItems(): void;
|
|
94036
|
+
/**
|
|
94037
|
+
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
94038
|
+
*
|
|
94039
|
+
* @param propertyNames A comma-delimited string or an array of strings that specify the properties to load.
|
|
94040
|
+
*/
|
|
94041
|
+
load(propertyNames?: string | string[]): Word.ComboBoxContentControl;
|
|
94042
|
+
/**
|
|
94043
|
+
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
94044
|
+
*
|
|
94045
|
+
* @param propertyNamesAndPaths `propertyNamesAndPaths.select` is a comma-delimited string that specifies the properties to load, and `propertyNamesAndPaths.expand` is a comma-delimited string that specifies the navigation properties to load.
|
|
94046
|
+
*/
|
|
94047
|
+
load(propertyNamesAndPaths?: {
|
|
94048
|
+
select?: string;
|
|
94049
|
+
expand?: string;
|
|
94050
|
+
}): Word.ComboBoxContentControl;
|
|
94051
|
+
/**
|
|
94052
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
94053
|
+
*/
|
|
94054
|
+
track(): Word.ComboBoxContentControl;
|
|
94055
|
+
/**
|
|
94056
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
94057
|
+
*/
|
|
94058
|
+
untrack(): Word.ComboBoxContentControl;
|
|
94059
|
+
/**
|
|
94060
|
+
* Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
|
|
94061
|
+
* Whereas the original Word.ComboBoxContentControl object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ComboBoxContentControlData`) that contains shallow copies of any loaded child properties from the original object.
|
|
94062
|
+
*/
|
|
94063
|
+
toJSON(): Word.Interfaces.ComboBoxContentControlData;
|
|
94064
|
+
}
|
|
93989
94065
|
/**
|
|
93990
94066
|
* Represents a field.
|
|
93991
94067
|
*
|
|
@@ -96007,11 +96083,11 @@ declare namespace Word {
|
|
|
96007
96083
|
* [Api set: WordApi 1.1]
|
|
96008
96084
|
*
|
|
96009
96085
|
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support was added in WordApi 1.7.
|
|
96010
|
-
* `DropDownList` support
|
|
96086
|
+
* `DropDownList` and `ComboBox` support are currently in preview.
|
|
96011
96087
|
*
|
|
96012
|
-
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', 'CheckBox', or '
|
|
96088
|
+
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', 'CheckBox', 'DropDownList', or 'ComboBox'. The default is 'RichText'.
|
|
96013
96089
|
*/
|
|
96014
|
-
insertContentControl(contentControlType?: Word.ContentControlType.richText | Word.ContentControlType.plainText | Word.ContentControlType.checkBox | Word.ContentControlType.dropDownList | "RichText" | "PlainText" | "CheckBox" | "DropDownList"): Word.ContentControl;
|
|
96090
|
+
insertContentControl(contentControlType?: Word.ContentControlType.richText | Word.ContentControlType.plainText | Word.ContentControlType.checkBox | Word.ContentControlType.dropDownList | Word.ContentControlType.comboBox | "RichText" | "PlainText" | "CheckBox" | "DropDownList" | "ComboBox"): Word.ContentControl;
|
|
96015
96091
|
/**
|
|
96016
96092
|
* Inserts a document into the paragraph at the specified location.
|
|
96017
96093
|
*
|
|
@@ -96815,11 +96891,11 @@ declare namespace Word {
|
|
|
96815
96891
|
* [Api set: WordApi 1.1]
|
|
96816
96892
|
*
|
|
96817
96893
|
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support was added in WordApi 1.7.
|
|
96818
|
-
* `DropDownList` support
|
|
96894
|
+
* `DropDownList` and `ComboBox` support are currently in preview.
|
|
96819
96895
|
*
|
|
96820
|
-
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', 'CheckBox', or '
|
|
96896
|
+
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', 'CheckBox', 'DropDownList', or 'ComboBox'. The default is 'RichText'.
|
|
96821
96897
|
*/
|
|
96822
|
-
insertContentControl(contentControlType?: Word.ContentControlType.richText | Word.ContentControlType.plainText | Word.ContentControlType.checkBox | Word.ContentControlType.dropDownList | "RichText" | "PlainText" | "CheckBox" | "DropDownList"): Word.ContentControl;
|
|
96898
|
+
insertContentControl(contentControlType?: Word.ContentControlType.richText | Word.ContentControlType.plainText | Word.ContentControlType.checkBox | Word.ContentControlType.dropDownList | Word.ContentControlType.comboBox | "RichText" | "PlainText" | "CheckBox" | "DropDownList" | "ComboBox"): Word.ContentControl;
|
|
96823
96899
|
/**
|
|
96824
96900
|
* Inserts an endnote. The endnote reference is placed after the range.
|
|
96825
96901
|
*
|
|
@@ -103997,7 +104073,7 @@ declare namespace Word {
|
|
|
103997
104073
|
/** An interface for updating data on the ContentControlListItem object, for use in `contentControlListItem.set({ ... })`. */
|
|
103998
104074
|
interface ContentControlListItemUpdateData {
|
|
103999
104075
|
/**
|
|
104000
|
-
* Specifies the display text of a list item for a dropdown list content control.
|
|
104076
|
+
* Specifies the display text of a list item for a dropdown list or combo box content control.
|
|
104001
104077
|
*
|
|
104002
104078
|
* @remarks
|
|
104003
104079
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -104013,7 +104089,7 @@ declare namespace Word {
|
|
|
104013
104089
|
*/
|
|
104014
104090
|
index?: number;
|
|
104015
104091
|
/**
|
|
104016
|
-
* Specifies the programmatic value of a list item for a dropdown list content control.
|
|
104092
|
+
* Specifies the programmatic value of a list item for a dropdown list or combo box content control.
|
|
104017
104093
|
*
|
|
104018
104094
|
* @remarks
|
|
104019
104095
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -105570,6 +105646,14 @@ declare namespace Word {
|
|
|
105570
105646
|
* [Api set: WordApi 1.7]
|
|
105571
105647
|
*/
|
|
105572
105648
|
checkboxContentControl?: Word.Interfaces.CheckboxContentControlData;
|
|
105649
|
+
/**
|
|
105650
|
+
* Specifies the combo box-related data if the content control's type is 'ComboBox'. It's null otherwise.
|
|
105651
|
+
*
|
|
105652
|
+
* @remarks
|
|
105653
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
105654
|
+
* @beta
|
|
105655
|
+
*/
|
|
105656
|
+
comboBoxContentControl?: Word.Interfaces.ComboBoxContentControlData;
|
|
105573
105657
|
/**
|
|
105574
105658
|
* Gets the collection of content control objects in the content control.
|
|
105575
105659
|
*
|
|
@@ -105737,7 +105821,7 @@ declare namespace Word {
|
|
|
105737
105821
|
/** An interface describing the data returned by calling `contentControlListItem.toJSON()`. */
|
|
105738
105822
|
interface ContentControlListItemData {
|
|
105739
105823
|
/**
|
|
105740
|
-
* Specifies the display text of a list item for a dropdown list content control.
|
|
105824
|
+
* Specifies the display text of a list item for a dropdown list or combo box content control.
|
|
105741
105825
|
*
|
|
105742
105826
|
* @remarks
|
|
105743
105827
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -105753,7 +105837,7 @@ declare namespace Word {
|
|
|
105753
105837
|
*/
|
|
105754
105838
|
index?: number;
|
|
105755
105839
|
/**
|
|
105756
|
-
* Specifies the programmatic value of a list item for a dropdown list content control.
|
|
105840
|
+
* Specifies the programmatic value of a list item for a dropdown list or combo box content control.
|
|
105757
105841
|
*
|
|
105758
105842
|
* @remarks
|
|
105759
105843
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -106061,6 +106145,9 @@ declare namespace Word {
|
|
|
106061
106145
|
/** An interface describing the data returned by calling `dropDownListContentControl.toJSON()`. */
|
|
106062
106146
|
interface DropDownListContentControlData {
|
|
106063
106147
|
}
|
|
106148
|
+
/** An interface describing the data returned by calling `comboBoxContentControl.toJSON()`. */
|
|
106149
|
+
interface ComboBoxContentControlData {
|
|
106150
|
+
}
|
|
106064
106151
|
/** An interface describing the data returned by calling `field.toJSON()`. */
|
|
106065
106152
|
interface FieldData {
|
|
106066
106153
|
/**
|
|
@@ -108425,7 +108512,7 @@ declare namespace Word {
|
|
|
108425
108512
|
type?: boolean;
|
|
108426
108513
|
}
|
|
108427
108514
|
/**
|
|
108428
|
-
* Represents a list item in a dropdown list content control.
|
|
108515
|
+
* Represents a list item in a dropdown list or combo box content control.
|
|
108429
108516
|
*
|
|
108430
108517
|
* @remarks
|
|
108431
108518
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -108437,7 +108524,7 @@ declare namespace Word {
|
|
|
108437
108524
|
*/
|
|
108438
108525
|
$all?: boolean;
|
|
108439
108526
|
/**
|
|
108440
|
-
* Specifies the display text of a list item for a dropdown list content control.
|
|
108527
|
+
* Specifies the display text of a list item for a dropdown list or combo box content control.
|
|
108441
108528
|
*
|
|
108442
108529
|
* @remarks
|
|
108443
108530
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -108453,7 +108540,7 @@ declare namespace Word {
|
|
|
108453
108540
|
*/
|
|
108454
108541
|
index?: boolean;
|
|
108455
108542
|
/**
|
|
108456
|
-
* Specifies the programmatic value of a list item for a dropdown list content control.
|
|
108543
|
+
* Specifies the programmatic value of a list item for a dropdown list or combo box content control.
|
|
108457
108544
|
*
|
|
108458
108545
|
* @remarks
|
|
108459
108546
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -108462,7 +108549,7 @@ declare namespace Word {
|
|
|
108462
108549
|
value?: boolean;
|
|
108463
108550
|
}
|
|
108464
108551
|
/**
|
|
108465
|
-
* Contains a collection of {@link Word.ContentControlListItem} objects that represent the items in a dropdown list content control.
|
|
108552
|
+
* Contains a collection of {@link Word.ContentControlListItem} objects that represent the items in a dropdown list or combo box content control.
|
|
108466
108553
|
*
|
|
108467
108554
|
* @remarks
|
|
108468
108555
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -108474,7 +108561,7 @@ declare namespace Word {
|
|
|
108474
108561
|
*/
|
|
108475
108562
|
$all?: boolean;
|
|
108476
108563
|
/**
|
|
108477
|
-
* For EACH ITEM in the collection: Specifies the display text of a list item for a dropdown list content control.
|
|
108564
|
+
* For EACH ITEM in the collection: Specifies the display text of a list item for a dropdown list or combo box content control.
|
|
108478
108565
|
*
|
|
108479
108566
|
* @remarks
|
|
108480
108567
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -108490,7 +108577,7 @@ declare namespace Word {
|
|
|
108490
108577
|
*/
|
|
108491
108578
|
index?: boolean;
|
|
108492
108579
|
/**
|
|
108493
|
-
* For EACH ITEM in the collection: Specifies the programmatic value of a list item for a dropdown list content control.
|
|
108580
|
+
* For EACH ITEM in the collection: Specifies the programmatic value of a list item for a dropdown list or combo box content control.
|
|
108494
108581
|
*
|
|
108495
108582
|
* @remarks
|
|
108496
108583
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -110622,7 +110709,7 @@ declare namespace Word {
|
|
|
110622
110709
|
*
|
|
110623
110710
|
* @remarks
|
|
110624
110711
|
* [Api set: WordApi 1.1]
|
|
110625
|
-
|
|
110712
|
+
*/
|
|
110626
110713
|
body?: Word.Interfaces.BodyLoadOptions;
|
|
110627
110714
|
}
|
|
110628
110715
|
/**
|
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.478",
|
|
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",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "78689265f2fd891d7d8339a179df4b0fcc58030b98c6b90a0808f9bffb154a6c",
|
|
49
49
|
"typeScriptVersion": "4.7",
|
|
50
50
|
"nonNpm": true
|
|
51
51
|
}
|