@types/office-js-preview 1.0.278 → 1.0.279
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 +129 -31
- 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 (https://github.com/OfficeD
|
|
|
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: Thu, 13 Jan 2022 20:01:40 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Excel`, `Office`, `OfficeCore`, `OfficeExtension`, `OneNote`, `PowerPoint`, `Visio`, `Word`
|
|
14
14
|
|
office-js-preview/index.d.ts
CHANGED
|
@@ -19741,7 +19741,9 @@ declare namespace Excel {
|
|
|
19741
19741
|
/**
|
|
19742
19742
|
* Represents a `LinkedEntityCellValue`.
|
|
19743
19743
|
*
|
|
19744
|
+
* @remarks
|
|
19744
19745
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19746
|
+
* @beta
|
|
19745
19747
|
*/
|
|
19746
19748
|
linkedEntity = "LinkedEntity",
|
|
19747
19749
|
/**
|
|
@@ -19856,6 +19858,56 @@ declare namespace Excel {
|
|
|
19856
19858
|
licenseText?: string;
|
|
19857
19859
|
}
|
|
19858
19860
|
/**
|
|
19861
|
+
* Represents the value of a cell containing a #BUSY! error.
|
|
19862
|
+
* This type of error is used as a placeholder while the value of a cell is downloaded.
|
|
19863
|
+
*
|
|
19864
|
+
* @remarks
|
|
19865
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19866
|
+
* @beta
|
|
19867
|
+
*/
|
|
19868
|
+
interface PlaceholderErrorCellValue {
|
|
19869
|
+
/**
|
|
19870
|
+
* Represents the type of this cell value.
|
|
19871
|
+
*
|
|
19872
|
+
* @remarks
|
|
19873
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19874
|
+
* @beta
|
|
19875
|
+
*/
|
|
19876
|
+
type: CellValueType.error | "Error";
|
|
19877
|
+
/**
|
|
19878
|
+
* Represents the value that would be returned by `Range.values` for a cell with this value.
|
|
19879
|
+
*
|
|
19880
|
+
* @remarks
|
|
19881
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19882
|
+
* @beta
|
|
19883
|
+
*/
|
|
19884
|
+
basicValue?: "#BUSY!";
|
|
19885
|
+
/**
|
|
19886
|
+
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
19887
|
+
*
|
|
19888
|
+
* @remarks
|
|
19889
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19890
|
+
* @beta
|
|
19891
|
+
*/
|
|
19892
|
+
basicType?: RangeValueType.error | "Error";
|
|
19893
|
+
/**
|
|
19894
|
+
* Represents the type of `ErrorCellValue`.
|
|
19895
|
+
*
|
|
19896
|
+
* @remarks
|
|
19897
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19898
|
+
* @beta
|
|
19899
|
+
*/
|
|
19900
|
+
errorType?: ErrorCellValueType.placeholder | "Placeholder";
|
|
19901
|
+
/**
|
|
19902
|
+
* `PlaceholderErrorCellValue` is used during processing, while data is downloaded. The `target` property represents the data that is downloading, the data for which the `PlaceholderErrorCellValue` object is a placeholder.
|
|
19903
|
+
*
|
|
19904
|
+
* @remarks
|
|
19905
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19906
|
+
* @beta
|
|
19907
|
+
*/
|
|
19908
|
+
target: LinkedEntityCellValue | WebImageCellValue;
|
|
19909
|
+
}
|
|
19910
|
+
/**
|
|
19859
19911
|
* The provider attributes object represents the set of details used in card view to provide specified branding information for a `CellValue` type that supports provider attributes.
|
|
19860
19912
|
*
|
|
19861
19913
|
* @remarks
|
|
@@ -20446,6 +20498,14 @@ declare namespace Excel {
|
|
|
20446
20498
|
*/
|
|
20447
20499
|
num = "Num",
|
|
20448
20500
|
/**
|
|
20501
|
+
* Represents a `PlaceholderErrorCellValue`.
|
|
20502
|
+
*
|
|
20503
|
+
* @remarks
|
|
20504
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20505
|
+
* @beta
|
|
20506
|
+
*/
|
|
20507
|
+
placeholder = "Placeholder",
|
|
20508
|
+
/**
|
|
20449
20509
|
* Represents a `RefErrorCellValue`.
|
|
20450
20510
|
*
|
|
20451
20511
|
* @remarks
|
|
@@ -20477,7 +20537,7 @@ declare namespace Excel {
|
|
|
20477
20537
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20478
20538
|
* @beta
|
|
20479
20539
|
*/
|
|
20480
|
-
type ErrorCellValue = BlockedErrorCellValue | BusyErrorCellValue | CalcErrorCellValue | ConnectErrorCellValue | Div0ErrorCellValue | FieldErrorCellValue | GettingDataErrorCellValue | NotAvailableErrorCellValue | NameErrorCellValue | NullErrorCellValue | NumErrorCellValue | RefErrorCellValue | SpillErrorCellValue | ValueErrorCellValue;
|
|
20540
|
+
type ErrorCellValue = BlockedErrorCellValue | BusyErrorCellValue | CalcErrorCellValue | ConnectErrorCellValue | Div0ErrorCellValue | FieldErrorCellValue | GettingDataErrorCellValue | NotAvailableErrorCellValue | NameErrorCellValue | NullErrorCellValue | NumErrorCellValue | PlaceholderErrorCellValue | RefErrorCellValue | SpillErrorCellValue | ValueErrorCellValue;
|
|
20481
20541
|
/**
|
|
20482
20542
|
* Represents types of #FIELD! errors.
|
|
20483
20543
|
*
|
|
@@ -20647,74 +20707,98 @@ declare namespace Excel {
|
|
|
20647
20707
|
/**
|
|
20648
20708
|
* The linked entity ID object represents a set of properties that describes a service and culture for locating this service defined value.
|
|
20649
20709
|
*
|
|
20710
|
+
* @remarks
|
|
20650
20711
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20712
|
+
* @beta
|
|
20651
20713
|
*/
|
|
20652
|
-
|
|
20714
|
+
interface LinkedEntityId {
|
|
20653
20715
|
/**
|
|
20654
20716
|
* Represents which service was used to create the `CellValue`.
|
|
20655
20717
|
*
|
|
20718
|
+
* @remarks
|
|
20656
20719
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20720
|
+
* @beta
|
|
20657
20721
|
*/
|
|
20658
20722
|
serviceId: number;
|
|
20659
20723
|
/**
|
|
20660
20724
|
* Represents a domain specific to a service used to create the `CellValue`.
|
|
20661
20725
|
*
|
|
20726
|
+
* @remarks
|
|
20662
20727
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20728
|
+
* @beta
|
|
20663
20729
|
*/
|
|
20664
20730
|
domainId?: string;
|
|
20665
20731
|
/**
|
|
20666
20732
|
* Represents an identifier specific to a service used to create the `CellValue`.
|
|
20667
20733
|
*
|
|
20734
|
+
* @remarks
|
|
20668
20735
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20736
|
+
* @beta
|
|
20669
20737
|
*/
|
|
20670
20738
|
entityId: string;
|
|
20671
20739
|
/**
|
|
20672
20740
|
* Represents which language culture was used to create this `CellValue`.
|
|
20673
20741
|
*
|
|
20742
|
+
* @remarks
|
|
20674
20743
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20744
|
+
* @beta
|
|
20675
20745
|
*/
|
|
20676
20746
|
culture: string;
|
|
20677
20747
|
}
|
|
20678
20748
|
/**
|
|
20679
20749
|
* Represents a value whose properties derive from a service.
|
|
20680
20750
|
*
|
|
20751
|
+
* @remarks
|
|
20681
20752
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20753
|
+
* @beta
|
|
20682
20754
|
*/
|
|
20683
20755
|
interface LinkedEntityCellValue {
|
|
20684
20756
|
/**
|
|
20685
20757
|
* Represents the type of this cell value.
|
|
20686
20758
|
*
|
|
20759
|
+
* @remarks
|
|
20687
20760
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20761
|
+
* @beta
|
|
20688
20762
|
*/
|
|
20689
20763
|
type: CellValueType.linkedEntity | "LinkedEntity";
|
|
20690
20764
|
/**
|
|
20691
20765
|
* Represents the value that would be returned by `Range.values` for a cell with this value.
|
|
20692
20766
|
*
|
|
20767
|
+
* @remarks
|
|
20693
20768
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20769
|
+
* @beta
|
|
20694
20770
|
*/
|
|
20695
20771
|
basicValue?: "#VALUE!";
|
|
20696
20772
|
/**
|
|
20697
20773
|
* Represents the value that would be returned by `Range.valueTypes` for a cell with this value.
|
|
20698
20774
|
*
|
|
20775
|
+
* @remarks
|
|
20699
20776
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20777
|
+
* @beta
|
|
20700
20778
|
*/
|
|
20701
20779
|
basicType?: RangeValueType.error | "Error";
|
|
20702
20780
|
/**
|
|
20703
20781
|
* Represents the service source that provided the information in this value.
|
|
20704
20782
|
*
|
|
20783
|
+
* @remarks
|
|
20705
20784
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20785
|
+
* @beta
|
|
20706
20786
|
*/
|
|
20707
20787
|
id: LinkedEntityId;
|
|
20708
20788
|
/**
|
|
20709
20789
|
* Represents the text shown when a cell with this value is rendered.
|
|
20710
20790
|
*
|
|
20791
|
+
* @remarks
|
|
20711
20792
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20793
|
+
* @beta
|
|
20712
20794
|
*/
|
|
20713
20795
|
text?: string;
|
|
20714
20796
|
/**
|
|
20715
20797
|
* Represents the properties of this entity and their metadata.
|
|
20716
20798
|
*
|
|
20799
|
+
* @remarks
|
|
20717
20800
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20801
|
+
* @beta
|
|
20718
20802
|
*/
|
|
20719
20803
|
properties?: {
|
|
20720
20804
|
[key: string]: CellValue & {
|
|
@@ -20725,7 +20809,9 @@ declare namespace Excel {
|
|
|
20725
20809
|
* Represents information that describes the service which provided the image.
|
|
20726
20810
|
* This information can be used for branding in entity cards.
|
|
20727
20811
|
*
|
|
20812
|
+
* @remarks
|
|
20728
20813
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20814
|
+
* @beta
|
|
20729
20815
|
*/
|
|
20730
20816
|
provider?: CellValueProviderAttributes;
|
|
20731
20817
|
}
|
|
@@ -20984,13 +21070,17 @@ declare namespace Excel {
|
|
|
20984
21070
|
/**
|
|
20985
21071
|
* An error caused by structured references from the linked workbook. Displays as error type #REF! in Excel.
|
|
20986
21072
|
*
|
|
21073
|
+
* @remarks
|
|
20987
21074
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
21075
|
+
* @beta
|
|
20988
21076
|
*/
|
|
20989
21077
|
externalLinksStructuredRef = "ExternalLinksStructuredRef",
|
|
20990
21078
|
/**
|
|
20991
21079
|
* An error caused by dynamic array references from the linked workbook. Displays as error type #REF! in Excel.
|
|
20992
21080
|
*
|
|
21081
|
+
* @remarks
|
|
20993
21082
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
21083
|
+
* @beta
|
|
20994
21084
|
*/
|
|
20995
21085
|
externalLinksArrayRef = "ExternalLinksArrayRef"
|
|
20996
21086
|
}
|
|
@@ -22244,7 +22334,8 @@ declare namespace Excel {
|
|
|
22244
22334
|
function postprocessBindingDescriptor(response: any): any;
|
|
22245
22335
|
function getDataCommonPostprocess(response: any, callArgs: any): any;
|
|
22246
22336
|
/**
|
|
22247
|
-
* Represents an `AllowEditRange` object found in a worksheet.
|
|
22337
|
+
* Represents an `AllowEditRange` object found in a worksheet. This object works with worksheet protection properties.
|
|
22338
|
+
When worksheet protection is enabled, an `AllowEditRange` object can be used to allow editing of a specific range, while maintaining protection on the rest of the worksheet.
|
|
22248
22339
|
*
|
|
22249
22340
|
* @remarks
|
|
22250
22341
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
@@ -22354,7 +22445,8 @@ declare namespace Excel {
|
|
|
22354
22445
|
toJSON(): Excel.Interfaces.AllowEditRangeData;
|
|
22355
22446
|
}
|
|
22356
22447
|
/**
|
|
22357
|
-
* Represents the set of `AllowEditRange` objects found in a worksheet.
|
|
22448
|
+
* Represents the set of `AllowEditRange` objects found in a worksheet. `AllowEditRange` objects work with worksheet protection properties.
|
|
22449
|
+
When worksheet protection is enabled, an `AllowEditRange` object can be used to allow editing of a specific range, while maintaining protection on the rest of the worksheet.
|
|
22358
22450
|
*
|
|
22359
22451
|
* @remarks
|
|
22360
22452
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
@@ -27537,7 +27629,7 @@ declare namespace Excel {
|
|
|
27537
27629
|
*
|
|
27538
27630
|
* @param linkedEntityCellValueId An identifier that specifies an individual `LinkedEntityCellValue`.
|
|
27539
27631
|
*/
|
|
27540
|
-
|
|
27632
|
+
getLinkedEntityCellValue(linkedEntityCellValueId: LinkedEntityId): OfficeExtension.ClientResult<LinkedEntityCellValue>;
|
|
27541
27633
|
/**
|
|
27542
27634
|
* Gets the currently selected single range from the workbook. If there are multiple ranges selected, this method will throw an error.
|
|
27543
27635
|
*
|
|
@@ -28083,7 +28175,7 @@ declare namespace Excel {
|
|
|
28083
28175
|
* @remarks
|
|
28084
28176
|
* [Api set: ExcelApi 1.9]
|
|
28085
28177
|
*
|
|
28086
|
-
* @param address Optional. A string containing the comma-separated addresses or names of the individual ranges. For example, "A1:B2, A5:B5". If not specified,
|
|
28178
|
+
* @param address Optional. A string containing the comma-separated or semicolon-separated addresses or names of the individual ranges. For example, "A1:B2, A5:B5" or "A1:B2; A5:B5". If not specified, a `RangeAreas` object for the entire worksheet is returned.
|
|
28087
28179
|
*/
|
|
28088
28180
|
getRanges(address?: string): Excel.RangeAreas;
|
|
28089
28181
|
/**
|
|
@@ -28512,7 +28604,7 @@ declare namespace Excel {
|
|
|
28512
28604
|
*/
|
|
28513
28605
|
readonly onFormulaChanged: OfficeExtension.EventHandlers<Excel.WorksheetFormulaChangedEventArgs>;
|
|
28514
28606
|
/**
|
|
28515
|
-
* Occurs when a worksheet is moved
|
|
28607
|
+
* Occurs when a worksheet is moved within a workbook. This event only triggers when a worksheet is directly moved within a workbook. This event doesn't trigger when the position of a worksheet is indirectly changed, such as when a new worksheet is inserted and causes existing worksheets to change positions.
|
|
28516
28608
|
*
|
|
28517
28609
|
* @remarks
|
|
28518
28610
|
* [Api set: ExcelApiOnline 1.1]
|
|
@@ -28592,7 +28684,7 @@ declare namespace Excel {
|
|
|
28592
28684
|
toJSON(): Excel.Interfaces.WorksheetCollectionData;
|
|
28593
28685
|
}
|
|
28594
28686
|
/**
|
|
28595
|
-
* Represents the protection of a
|
|
28687
|
+
* Represents the protection of a worksheet object.
|
|
28596
28688
|
*
|
|
28597
28689
|
* @remarks
|
|
28598
28690
|
* [Api set: ExcelApi 1.2]
|
|
@@ -28601,7 +28693,8 @@ declare namespace Excel {
|
|
|
28601
28693
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
28602
28694
|
context: RequestContext;
|
|
28603
28695
|
/**
|
|
28604
|
-
* Specifies the `AllowEditRangeCollection` found in this worksheet.
|
|
28696
|
+
* Specifies the `AllowEditRangeCollection` object found in this worksheet. This is a collection of `AllowEditRange` objects, which work with worksheet protection properties.
|
|
28697
|
+
When worksheet protection is enabled, an `AllowEditRange` object can be used to allow editing of a specific range, while maintaining protection on the rest of the worksheet.
|
|
28605
28698
|
*
|
|
28606
28699
|
* @remarks
|
|
28607
28700
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
@@ -29236,11 +29329,11 @@ declare namespace Excel {
|
|
|
29236
29329
|
/** Sets multiple properties on the object at the same time, based on an existing loaded object. */
|
|
29237
29330
|
set(properties: Excel.Range): void;
|
|
29238
29331
|
/**
|
|
29239
|
-
* Fills range from the current range to the destination range using the specified AutoFill logic.
|
|
29240
|
-
|
|
29241
|
-
|
|
29332
|
+
* Fills a range from the current range to the destination range using the specified AutoFill logic.
|
|
29333
|
+
The destination range can be `null` or can extend the source range either horizontally or vertically.
|
|
29334
|
+
Discontiguous ranges are not supported.
|
|
29242
29335
|
|
|
29243
|
-
|
|
29336
|
+
For more information, see {@link https://support.microsoft.com/office/2e79a709-c814-4b27-8bc2-c4dc84d49464 | Use AutoFill and Flash Fill}.
|
|
29244
29337
|
*
|
|
29245
29338
|
* @remarks
|
|
29246
29339
|
* [Api set: ExcelApi 1.9, ExcelApi Preview for null `destinationRange`]
|
|
@@ -29250,11 +29343,11 @@ declare namespace Excel {
|
|
|
29250
29343
|
*/
|
|
29251
29344
|
autoFill(destinationRange?: Range | string, autoFillType?: Excel.AutoFillType): void;
|
|
29252
29345
|
/**
|
|
29253
|
-
* Fills range from the current range to the destination range using the specified AutoFill logic.
|
|
29254
|
-
|
|
29255
|
-
|
|
29346
|
+
* Fills a range from the current range to the destination range using the specified AutoFill logic.
|
|
29347
|
+
The destination range can be `null` or can extend the source range either horizontally or vertically.
|
|
29348
|
+
Discontiguous ranges are not supported.
|
|
29256
29349
|
|
|
29257
|
-
|
|
29350
|
+
For more information, see {@link https://support.microsoft.com/office/2e79a709-c814-4b27-8bc2-c4dc84d49464 | Use AutoFill and Flash Fill}.
|
|
29258
29351
|
*
|
|
29259
29352
|
* @remarks
|
|
29260
29353
|
* [Api set: ExcelApi 1.9, ExcelApi Preview for null `destinationRange`]
|
|
@@ -29563,7 +29656,8 @@ declare namespace Excel {
|
|
|
29563
29656
|
*/
|
|
29564
29657
|
getLastRow(): Excel.Range;
|
|
29565
29658
|
/**
|
|
29566
|
-
* Returns a RangeAreas object that represents the merged areas in this range. Note that if the merged areas count in this range is more than 512,
|
|
29659
|
+
* Returns a `RangeAreas` object that represents the merged areas in this range. Note that if the merged areas count in this range is more than 512, then this method will fail to return the result. If the `RangeAreas` object doesn't exist, then this function will return an object with its `isNullObject` property set to `true`.
|
|
29660
|
+
For further information, see {@link https://docs.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
29567
29661
|
*
|
|
29568
29662
|
* @remarks
|
|
29569
29663
|
* [Api set: ExcelApi 1.13]
|
|
@@ -32104,7 +32198,7 @@ declare namespace Excel {
|
|
|
32104
32198
|
/**
|
|
32105
32199
|
* Name of the table.
|
|
32106
32200
|
|
|
32107
|
-
The set name of the table must follow the guidelines specified in the {@link https://support.
|
|
32201
|
+
The set name of the table must follow the guidelines specified in the {@link https://support.microsoft.com/office/fbf49a4f-82a3-43eb-8ba2-44d21233b114 | Rename an Excel table} article.
|
|
32108
32202
|
*
|
|
32109
32203
|
* @remarks
|
|
32110
32204
|
* [Api set: ExcelApi 1.1]
|
|
@@ -38753,7 +38847,7 @@ declare namespace Excel {
|
|
|
38753
38847
|
*/
|
|
38754
38848
|
getRangeOrNullObject(): Excel.Range;
|
|
38755
38849
|
/**
|
|
38756
|
-
* Applies the specified
|
|
38850
|
+
* Applies the specified AutoFilter object currently on the range.
|
|
38757
38851
|
*
|
|
38758
38852
|
* @remarks
|
|
38759
38853
|
* [Api set: ExcelApi 1.9]
|
|
@@ -39550,7 +39644,8 @@ declare namespace Excel {
|
|
|
39550
39644
|
*/
|
|
39551
39645
|
delete(): void;
|
|
39552
39646
|
/**
|
|
39553
|
-
* Returns the string representation of the data source for the PivotTable. This method currently supports string representations for table and range objects.
|
|
39647
|
+
* Returns the string representation of the data source for the PivotTable. This method currently supports string representations for table and range objects.
|
|
39648
|
+
Otherwise, it returns an empty string.
|
|
39554
39649
|
*
|
|
39555
39650
|
* @remarks
|
|
39556
39651
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
@@ -45705,7 +45800,7 @@ declare namespace Excel {
|
|
|
45705
45800
|
* @remarks
|
|
45706
45801
|
* [Api set: ExcelApi 1.9]
|
|
45707
45802
|
*
|
|
45708
|
-
* @param key
|
|
45803
|
+
* @param key The name or ID of the shape to be retrieved.
|
|
45709
45804
|
*/
|
|
45710
45805
|
getItem(key: string): Excel.Shape;
|
|
45711
45806
|
/**
|
|
@@ -59386,7 +59481,7 @@ declare namespace Excel {
|
|
|
59386
59481
|
/**
|
|
59387
59482
|
* Name of the table.
|
|
59388
59483
|
|
|
59389
|
-
The set name of the table must follow the guidelines specified in the {@link https://support.
|
|
59484
|
+
The set name of the table must follow the guidelines specified in the {@link https://support.microsoft.com/office/fbf49a4f-82a3-43eb-8ba2-44d21233b114 | Rename an Excel table} article.
|
|
59390
59485
|
*
|
|
59391
59486
|
* @remarks
|
|
59392
59487
|
* [Api set: ExcelApi 1.1]
|
|
@@ -64595,7 +64690,8 @@ declare namespace Excel {
|
|
|
64595
64690
|
/** An interface describing the data returned by calling `worksheetProtection.toJSON()`. */
|
|
64596
64691
|
interface WorksheetProtectionData {
|
|
64597
64692
|
/**
|
|
64598
|
-
* Specifies the `AllowEditRangeCollection` found in this worksheet.
|
|
64693
|
+
* Specifies the `AllowEditRangeCollection` object found in this worksheet. This is a collection of `AllowEditRange` objects, which work with worksheet protection properties.
|
|
64694
|
+
When worksheet protection is enabled, an `AllowEditRange` object can be used to allow editing of a specific range, while maintaining protection on the rest of the worksheet.
|
|
64599
64695
|
*
|
|
64600
64696
|
* @remarks
|
|
64601
64697
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
@@ -65316,7 +65412,7 @@ declare namespace Excel {
|
|
|
65316
65412
|
/**
|
|
65317
65413
|
* Name of the table.
|
|
65318
65414
|
|
|
65319
|
-
The set name of the table must follow the guidelines specified in the {@link https://support.
|
|
65415
|
+
The set name of the table must follow the guidelines specified in the {@link https://support.microsoft.com/office/fbf49a4f-82a3-43eb-8ba2-44d21233b114 | Rename an Excel table} article.
|
|
65320
65416
|
*
|
|
65321
65417
|
* @remarks
|
|
65322
65418
|
* [Api set: ExcelApi 1.1]
|
|
@@ -70698,7 +70794,8 @@ declare namespace Excel {
|
|
|
70698
70794
|
value?: T;
|
|
70699
70795
|
}
|
|
70700
70796
|
/**
|
|
70701
|
-
* Represents an `AllowEditRange` object found in a worksheet.
|
|
70797
|
+
* Represents an `AllowEditRange` object found in a worksheet. This object works with worksheet protection properties.
|
|
70798
|
+
When worksheet protection is enabled, an `AllowEditRange` object can be used to allow editing of a specific range, while maintaining protection on the rest of the worksheet.
|
|
70702
70799
|
*
|
|
70703
70800
|
* @remarks
|
|
70704
70801
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
@@ -70740,7 +70837,8 @@ declare namespace Excel {
|
|
|
70740
70837
|
title?: boolean;
|
|
70741
70838
|
}
|
|
70742
70839
|
/**
|
|
70743
|
-
* Represents the set of `AllowEditRange` objects found in a worksheet.
|
|
70840
|
+
* Represents the set of `AllowEditRange` objects found in a worksheet. `AllowEditRange` objects work with worksheet protection properties.
|
|
70841
|
+
When worksheet protection is enabled, an `AllowEditRange` object can be used to allow editing of a specific range, while maintaining protection on the rest of the worksheet.
|
|
70744
70842
|
*
|
|
70745
70843
|
* @remarks
|
|
70746
70844
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
@@ -71949,7 +72047,7 @@ declare namespace Excel {
|
|
|
71949
72047
|
visibility?: boolean;
|
|
71950
72048
|
}
|
|
71951
72049
|
/**
|
|
71952
|
-
* Represents the protection of a
|
|
72050
|
+
* Represents the protection of a worksheet object.
|
|
71953
72051
|
*
|
|
71954
72052
|
* @remarks
|
|
71955
72053
|
* [Api set: ExcelApi 1.2]
|
|
@@ -72968,7 +73066,7 @@ declare namespace Excel {
|
|
|
72968
73066
|
/**
|
|
72969
73067
|
* For EACH ITEM in the collection: Name of the table.
|
|
72970
73068
|
|
|
72971
|
-
The set name of the table must follow the guidelines specified in the {@link https://support.
|
|
73069
|
+
The set name of the table must follow the guidelines specified in the {@link https://support.microsoft.com/office/fbf49a4f-82a3-43eb-8ba2-44d21233b114 | Rename an Excel table} article.
|
|
72972
73070
|
*
|
|
72973
73071
|
* @remarks
|
|
72974
73072
|
* [Api set: ExcelApi 1.1]
|
|
@@ -73102,7 +73200,7 @@ declare namespace Excel {
|
|
|
73102
73200
|
/**
|
|
73103
73201
|
* For EACH ITEM in the collection: Name of the table.
|
|
73104
73202
|
|
|
73105
|
-
The set name of the table must follow the guidelines specified in the {@link https://support.
|
|
73203
|
+
The set name of the table must follow the guidelines specified in the {@link https://support.microsoft.com/office/fbf49a4f-82a3-43eb-8ba2-44d21233b114 | Rename an Excel table} article.
|
|
73106
73204
|
*
|
|
73107
73205
|
* @remarks
|
|
73108
73206
|
* [Api set: ExcelApi 1.1]
|
|
@@ -73237,7 +73335,7 @@ declare namespace Excel {
|
|
|
73237
73335
|
/**
|
|
73238
73336
|
* Name of the table.
|
|
73239
73337
|
|
|
73240
|
-
The set name of the table must follow the guidelines specified in the {@link https://support.
|
|
73338
|
+
The set name of the table must follow the guidelines specified in the {@link https://support.microsoft.com/office/fbf49a4f-82a3-43eb-8ba2-44d21233b114 | Rename an Excel table} article.
|
|
73241
73339
|
*
|
|
73242
73340
|
* @remarks
|
|
73243
73341
|
* [Api set: ExcelApi 1.1]
|
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.279",
|
|
4
4
|
"description": "TypeScript definitions for Office.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,6 +40,6 @@
|
|
|
40
40
|
},
|
|
41
41
|
"scripts": {},
|
|
42
42
|
"dependencies": {},
|
|
43
|
-
"typesPublisherContentHash": "
|
|
43
|
+
"typesPublisherContentHash": "e9165fb259e6225283b2207ca446452331492201f9bef211e017c6faa6f3354d",
|
|
44
44
|
"typeScriptVersion": "3.8"
|
|
45
45
|
}
|