@types/office-js 1.0.510 → 1.0.512
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 +10 -8
- 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: Fri, 13 Jun 2025 17:02:20 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -24822,8 +24822,10 @@ declare namespace Excel {
|
|
|
24822
24822
|
tooManyCells = "TooManyCells",
|
|
24823
24823
|
/**
|
|
24824
24824
|
* An error caused by a cell's formula evaluating to a lambda value. Displays as error type #CALC! in Excel.
|
|
24825
|
+
*
|
|
24826
|
+
* Warning: `lambdaInCell` was deprecated in ExcelApi 1.19.
|
|
24825
24827
|
*
|
|
24826
|
-
* @deprecated Deprecated since
|
|
24828
|
+
* @deprecated Deprecated since ExcelApi 1.19.
|
|
24827
24829
|
*
|
|
24828
24830
|
* @remarks
|
|
24829
24831
|
* [Api set: ExcelApi 1.16]
|
|
@@ -131354,12 +131356,12 @@ declare namespace PowerPoint {
|
|
|
131354
131356
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
131355
131357
|
context: RequestContext;
|
|
131356
131358
|
/**
|
|
131357
|
-
* Specifies if the bullets in the paragraph are visible. Returns
|
|
131359
|
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
|
|
131358
131360
|
*
|
|
131359
131361
|
* @remarks
|
|
131360
131362
|
* [Api set: PowerPointApi 1.4]
|
|
131361
131363
|
*/
|
|
131362
|
-
visible: boolean;
|
|
131364
|
+
visible: boolean | null;
|
|
131363
131365
|
/**
|
|
131364
131366
|
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
131365
131367
|
*
|
|
@@ -132970,12 +132972,12 @@ declare namespace PowerPoint {
|
|
|
132970
132972
|
/** An interface for updating data on the `BulletFormat` object, for use in `bulletFormat.set({ ... })`. */
|
|
132971
132973
|
interface BulletFormatUpdateData {
|
|
132972
132974
|
/**
|
|
132973
|
-
* Specifies if the bullets in the paragraph are visible. Returns
|
|
132975
|
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
|
|
132974
132976
|
*
|
|
132975
132977
|
* @remarks
|
|
132976
132978
|
* [Api set: PowerPointApi 1.4]
|
|
132977
132979
|
*/
|
|
132978
|
-
visible?: boolean;
|
|
132980
|
+
visible?: boolean | null;
|
|
132979
132981
|
}
|
|
132980
132982
|
/** An interface for updating data on the `ParagraphFormat` object, for use in `paragraphFormat.set({ ... })`. */
|
|
132981
132983
|
interface ParagraphFormatUpdateData {
|
|
@@ -133651,12 +133653,12 @@ declare namespace PowerPoint {
|
|
|
133651
133653
|
/** An interface describing the data returned by calling `bulletFormat.toJSON()`. */
|
|
133652
133654
|
interface BulletFormatData {
|
|
133653
133655
|
/**
|
|
133654
|
-
* Specifies if the bullets in the paragraph are visible. Returns
|
|
133656
|
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
|
|
133655
133657
|
*
|
|
133656
133658
|
* @remarks
|
|
133657
133659
|
* [Api set: PowerPointApi 1.4]
|
|
133658
133660
|
*/
|
|
133659
|
-
visible?: boolean;
|
|
133661
|
+
visible?: boolean | null;
|
|
133660
133662
|
}
|
|
133661
133663
|
/** An interface describing the data returned by calling `paragraphFormat.toJSON()`. */
|
|
133662
133664
|
interface ParagraphFormatData {
|
|
@@ -134990,7 +134992,7 @@ declare namespace PowerPoint {
|
|
|
134990
134992
|
*/
|
|
134991
134993
|
$all?: boolean;
|
|
134992
134994
|
/**
|
|
134993
|
-
* Specifies if the bullets in the paragraph are visible. Returns
|
|
134995
|
+
* Specifies if the bullets in the paragraph are visible. Returns `null` if the {@link PowerPoint.TextRange} includes text fragments with different bullet visibility values.
|
|
134994
134996
|
*
|
|
134995
134997
|
* @remarks
|
|
134996
134998
|
* [Api set: PowerPointApi 1.4]
|
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.512",
|
|
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",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
48
|
"peerDependencies": {},
|
|
49
|
-
"typesPublisherContentHash": "
|
|
49
|
+
"typesPublisherContentHash": "8847c343ff2e918304076b5346a7b520d3124340fa71a523ed8a2ae20bd6a5ef",
|
|
50
50
|
"typeScriptVersion": "5.1"
|
|
51
51
|
}
|