@types/office-js-preview 1.0.354 → 1.0.356
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
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, 01 Dec 2022 20:32:58 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
|
@@ -35559,7 +35559,8 @@ declare namespace Excel {
|
|
|
35559
35559
|
*/
|
|
35560
35560
|
readonly type: Excel.NamedItemType | "String" | "Integer" | "Double" | "Boolean" | "Range" | "Error" | "Array";
|
|
35561
35561
|
/**
|
|
35562
|
-
* Represents the value computed by the name's formula. For a named range
|
|
35562
|
+
* Represents the value computed by the name's formula. For a named range it will return the range address.
|
|
35563
|
+
* Note: This API returns the #VALUE! error in the Excel UI if it refers to a custom function.
|
|
35563
35564
|
*
|
|
35564
35565
|
* @remarks
|
|
35565
35566
|
* [Api set: ExcelApi 1.1]
|
|
@@ -38221,6 +38222,23 @@ declare namespace Excel {
|
|
|
38221
38222
|
* [Api set: ExcelApi 1.1]
|
|
38222
38223
|
*/
|
|
38223
38224
|
delete(): void;
|
|
38225
|
+
/**
|
|
38226
|
+
* Gets the data source of the whole chart. If the data range is empty, this method will return the `EmptyChartSeries` error.
|
|
38227
|
+
*
|
|
38228
|
+
* @remarks
|
|
38229
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
38230
|
+
* @beta
|
|
38231
|
+
*/
|
|
38232
|
+
getDataRange(): OfficeExtension.ClientResult<string>;
|
|
38233
|
+
/**
|
|
38234
|
+
* Gets the data source of the whole chart. If the data range is empty, then this method returns an object with its `isNullObject` property set to `true`.
|
|
38235
|
+
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}.
|
|
38236
|
+
*
|
|
38237
|
+
* @remarks
|
|
38238
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
38239
|
+
* @beta
|
|
38240
|
+
*/
|
|
38241
|
+
getDataRangeOrNullObject(): OfficeExtension.ClientResult<string>;
|
|
38224
38242
|
/**
|
|
38225
38243
|
* Gets the data table on the chart. If the chart doesn't allow a data table, it will throw an exception.
|
|
38226
38244
|
*
|
|
@@ -69429,7 +69447,8 @@ declare namespace Excel {
|
|
|
69429
69447
|
*/
|
|
69430
69448
|
type?: Excel.NamedItemType | "String" | "Integer" | "Double" | "Boolean" | "Range" | "Error" | "Array";
|
|
69431
69449
|
/**
|
|
69432
|
-
* Represents the value computed by the name's formula. For a named range
|
|
69450
|
+
* Represents the value computed by the name's formula. For a named range it will return the range address.
|
|
69451
|
+
* Note: This API returns the #VALUE! error in the Excel UI if it refers to a custom function.
|
|
69433
69452
|
*
|
|
69434
69453
|
* @remarks
|
|
69435
69454
|
* [Api set: ExcelApi 1.1]
|
|
@@ -76961,7 +76980,8 @@ declare namespace Excel {
|
|
|
76961
76980
|
*/
|
|
76962
76981
|
type?: boolean;
|
|
76963
76982
|
/**
|
|
76964
|
-
* For EACH ITEM in the collection: Represents the value computed by the name's formula. For a named range
|
|
76983
|
+
* For EACH ITEM in the collection: Represents the value computed by the name's formula. For a named range it will return the range address.
|
|
76984
|
+
* Note: This API returns the #VALUE! error in the Excel UI if it refers to a custom function.
|
|
76965
76985
|
*
|
|
76966
76986
|
* @remarks
|
|
76967
76987
|
* [Api set: ExcelApi 1.1]
|
|
@@ -77063,6 +77083,7 @@ declare namespace Excel {
|
|
|
77063
77083
|
type?: boolean;
|
|
77064
77084
|
/**
|
|
77065
77085
|
* Represents the value computed by the name's formula. For a named range, will return the range address.
|
|
77086
|
+
* Note: This API returns the #VALUE! error in the Excel UI if it refers to a custom function.
|
|
77066
77087
|
*
|
|
77067
77088
|
* @remarks
|
|
77068
77089
|
* [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.356",
|
|
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",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
49
|
-
"typeScriptVersion": "4.
|
|
48
|
+
"typesPublisherContentHash": "80fe86d9731200ebbb31974f365ffeee3a5c1a0dc582bbd058c4a8a146877f94",
|
|
49
|
+
"typeScriptVersion": "4.2"
|
|
50
50
|
}
|