@types/office-js 1.0.370 → 1.0.371
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 +13 -6
- 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, 06 Feb 2024 20:35:18 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -28566,7 +28566,7 @@ declare namespace Excel {
|
|
|
28566
28566
|
*/
|
|
28567
28567
|
lowerBound?: string;
|
|
28568
28568
|
/**
|
|
28569
|
-
* The substring used for `beginsWith`, `endsWith`, and `contains` filter conditions.
|
|
28569
|
+
* The substring used for the `beginsWith`, `endsWith`, and `contains` filter conditions.
|
|
28570
28570
|
*
|
|
28571
28571
|
* @remarks
|
|
28572
28572
|
* [Api set: ExcelApi 1.12]
|
|
@@ -32379,7 +32379,7 @@ declare namespace Excel {
|
|
|
32379
32379
|
* @param skipBlanks True if to skip blank cells in the source range. Default is false.
|
|
32380
32380
|
* @param transpose True if to transpose the cells in the destination range. Default is false.
|
|
32381
32381
|
*/
|
|
32382
|
-
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: "All" | "Formulas" | "Values" | "Formats", skipBlanks?: boolean, transpose?: boolean): void;
|
|
32382
|
+
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: "All" | "Formulas" | "Values" | "Formats" | "Link", skipBlanks?: boolean, transpose?: boolean): void;
|
|
32383
32383
|
/**
|
|
32384
32384
|
* Deletes the cells associated with the range.
|
|
32385
32385
|
*
|
|
@@ -32509,7 +32509,7 @@ declare namespace Excel {
|
|
|
32509
32509
|
getColumnsBefore(count?: number): Excel.Range;
|
|
32510
32510
|
/**
|
|
32511
32511
|
* Returns a `WorkbookRangeAreas` object that represents the range containing all the dependent cells of a specified range in the same worksheet or across multiple worksheets.
|
|
32512
|
-
*
|
|
32512
|
+
*
|
|
32513
32513
|
* @remarks
|
|
32514
32514
|
* [Api set: ExcelApi 1.15]
|
|
32515
32515
|
*/
|
|
@@ -33282,7 +33282,7 @@ declare namespace Excel {
|
|
|
33282
33282
|
* @param skipBlanks True if to skip blank cells in the source range or `RangeAreas`. Default is false.
|
|
33283
33283
|
* @param transpose True if to transpose the cells in the destination `RangeAreas`. Default is false.
|
|
33284
33284
|
*/
|
|
33285
|
-
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: "All" | "Formulas" | "Values" | "Formats", skipBlanks?: boolean, transpose?: boolean): void;
|
|
33285
|
+
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: "All" | "Formulas" | "Values" | "Formats" | "Link", skipBlanks?: boolean, transpose?: boolean): void;
|
|
33286
33286
|
/**
|
|
33287
33287
|
* Returns a `RangeAreas` object that represents the entire columns of the `RangeAreas` (for example, if the current `RangeAreas` represents cells "B4:E11, H2", it returns a `RangeAreas` that represents columns "B:E, H:H").
|
|
33288
33288
|
*
|
|
@@ -54291,6 +54291,8 @@ declare namespace Excel {
|
|
|
54291
54291
|
textAsNumber = "TextAsNumber"
|
|
54292
54292
|
}
|
|
54293
54293
|
/**
|
|
54294
|
+
* Represents the ordering method to be used when sorting Chinese characters.
|
|
54295
|
+
*
|
|
54294
54296
|
* @remarks
|
|
54295
54297
|
* [Api set: ExcelApi 1.2]
|
|
54296
54298
|
*/
|
|
@@ -55726,7 +55728,12 @@ declare namespace Excel {
|
|
|
55726
55728
|
* @remarks
|
|
55727
55729
|
* [Api set: ExcelApi 1.9]
|
|
55728
55730
|
*/
|
|
55729
|
-
formats = "Formats"
|
|
55731
|
+
formats = "Formats",
|
|
55732
|
+
/**
|
|
55733
|
+
* @remarks
|
|
55734
|
+
* [Api set: ExcelApiOnline 1.1]
|
|
55735
|
+
*/
|
|
55736
|
+
link = "Link",
|
|
55730
55737
|
}
|
|
55731
55738
|
/**
|
|
55732
55739
|
* @remarks
|
|
@@ -57499,7 +57506,7 @@ declare namespace Excel {
|
|
|
57499
57506
|
/**
|
|
57500
57507
|
* Creates and activates a new temporary sheet view.
|
|
57501
57508
|
Temporary views are removed when closing the application, exiting the temporary view with the exit method, or switching to another sheet view.
|
|
57502
|
-
The temporary sheet view can also be
|
|
57509
|
+
The temporary sheet view can also be accessed with the empty string (""), if the temporary view exists.
|
|
57503
57510
|
*
|
|
57504
57511
|
* @remarks
|
|
57505
57512
|
* [Api set: ExcelApiOnline 1.1]
|
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.371",
|
|
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": "9283e795f2e2fec9ee9bfbb1e3bb6e331c2676146d1810faa28d8b17e61ba4a7",
|
|
49
49
|
"typeScriptVersion": "4.6"
|
|
50
50
|
}
|