@types/office-js-preview 1.0.354 → 1.0.355
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, 17 Nov 2022 00:03:04 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
|
@@ -38221,6 +38221,23 @@ declare namespace Excel {
|
|
|
38221
38221
|
* [Api set: ExcelApi 1.1]
|
|
38222
38222
|
*/
|
|
38223
38223
|
delete(): void;
|
|
38224
|
+
/**
|
|
38225
|
+
* Gets the data source of the whole chart. If the data range is empty, this method will return the `EmptyChartSeries` error.
|
|
38226
|
+
*
|
|
38227
|
+
* @remarks
|
|
38228
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
38229
|
+
* @beta
|
|
38230
|
+
*/
|
|
38231
|
+
getDataRange(): OfficeExtension.ClientResult<string>;
|
|
38232
|
+
/**
|
|
38233
|
+
* 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`.
|
|
38234
|
+
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}.
|
|
38235
|
+
*
|
|
38236
|
+
* @remarks
|
|
38237
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
38238
|
+
* @beta
|
|
38239
|
+
*/
|
|
38240
|
+
getDataRangeOrNullObject(): OfficeExtension.ClientResult<string>;
|
|
38224
38241
|
/**
|
|
38225
38242
|
* Gets the data table on the chart. If the chart doesn't allow a data table, it will throw an exception.
|
|
38226
38243
|
*
|
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.355",
|
|
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": "8694a0305ae64b82c2884086cdd9105a0304e7c1124d0ddccd90803f962a0d52",
|
|
49
|
+
"typeScriptVersion": "4.2"
|
|
50
50
|
}
|