@types/office-js 1.0.511 → 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 +7 -7
- 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
|
@@ -131356,12 +131356,12 @@ declare namespace PowerPoint {
|
|
|
131356
131356
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
131357
131357
|
context: RequestContext;
|
|
131358
131358
|
/**
|
|
131359
|
-
* 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.
|
|
131360
131360
|
*
|
|
131361
131361
|
* @remarks
|
|
131362
131362
|
* [Api set: PowerPointApi 1.4]
|
|
131363
131363
|
*/
|
|
131364
|
-
visible: boolean;
|
|
131364
|
+
visible: boolean | null;
|
|
131365
131365
|
/**
|
|
131366
131366
|
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
131367
131367
|
*
|
|
@@ -132972,12 +132972,12 @@ declare namespace PowerPoint {
|
|
|
132972
132972
|
/** An interface for updating data on the `BulletFormat` object, for use in `bulletFormat.set({ ... })`. */
|
|
132973
132973
|
interface BulletFormatUpdateData {
|
|
132974
132974
|
/**
|
|
132975
|
-
* 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.
|
|
132976
132976
|
*
|
|
132977
132977
|
* @remarks
|
|
132978
132978
|
* [Api set: PowerPointApi 1.4]
|
|
132979
132979
|
*/
|
|
132980
|
-
visible?: boolean;
|
|
132980
|
+
visible?: boolean | null;
|
|
132981
132981
|
}
|
|
132982
132982
|
/** An interface for updating data on the `ParagraphFormat` object, for use in `paragraphFormat.set({ ... })`. */
|
|
132983
132983
|
interface ParagraphFormatUpdateData {
|
|
@@ -133653,12 +133653,12 @@ declare namespace PowerPoint {
|
|
|
133653
133653
|
/** An interface describing the data returned by calling `bulletFormat.toJSON()`. */
|
|
133654
133654
|
interface BulletFormatData {
|
|
133655
133655
|
/**
|
|
133656
|
-
* 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.
|
|
133657
133657
|
*
|
|
133658
133658
|
* @remarks
|
|
133659
133659
|
* [Api set: PowerPointApi 1.4]
|
|
133660
133660
|
*/
|
|
133661
|
-
visible?: boolean;
|
|
133661
|
+
visible?: boolean | null;
|
|
133662
133662
|
}
|
|
133663
133663
|
/** An interface describing the data returned by calling `paragraphFormat.toJSON()`. */
|
|
133664
133664
|
interface ParagraphFormatData {
|
|
@@ -134992,7 +134992,7 @@ declare namespace PowerPoint {
|
|
|
134992
134992
|
*/
|
|
134993
134993
|
$all?: boolean;
|
|
134994
134994
|
/**
|
|
134995
|
-
* 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.
|
|
134996
134996
|
*
|
|
134997
134997
|
* @remarks
|
|
134998
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
|
}
|