@types/office-js-preview 1.0.653 → 1.0.654
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-preview (https://github.com
|
|
|
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: Fri, 17 Oct 2025 17:
|
|
11
|
+
* Last updated: Fri, 17 Oct 2025 17:33:42 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -190847,6 +190847,8 @@ declare namespace Visio {
|
|
|
190847
190847
|
|
|
190848
190848
|
declare namespace PowerPoint {
|
|
190849
190849
|
/**
|
|
190850
|
+
* Represents the PowerPoint application that manages the presentation.
|
|
190851
|
+
*
|
|
190850
190852
|
* @remarks
|
|
190851
190853
|
* [Api set: PowerPointApi 1.0]
|
|
190852
190854
|
*/
|
|
@@ -190866,6 +190868,10 @@ declare namespace PowerPoint {
|
|
|
190866
190868
|
};
|
|
190867
190869
|
}
|
|
190868
190870
|
/**
|
|
190871
|
+
* The `Presentation` object is the top-level object with one or more slides that contain the contents of the presentation.
|
|
190872
|
+
To learn more about the PowerPoint object model,
|
|
190873
|
+
see {@link https://learn.microsoft.com/office/dev/add-ins/powerpoint/core-concepts | PowerPoint JavaScript object model}.
|
|
190874
|
+
*
|
|
190869
190875
|
* @remarks
|
|
190870
190876
|
* [Api set: PowerPointApi 1.0]
|
|
190871
190877
|
*/
|
|
@@ -190929,6 +190935,12 @@ declare namespace PowerPoint {
|
|
|
190929
190935
|
* [Api set: PowerPointApi 1.5]
|
|
190930
190936
|
*/
|
|
190931
190937
|
readonly id: string;
|
|
190938
|
+
/**
|
|
190939
|
+
* Returns the title of the presentation.
|
|
190940
|
+
*
|
|
190941
|
+
* @remarks
|
|
190942
|
+
* [Api set: PowerPointApi 1.0]
|
|
190943
|
+
*/
|
|
190932
190944
|
readonly title: string;
|
|
190933
190945
|
/**
|
|
190934
190946
|
* Returns the selected shapes in the current slide of the presentation.
|
|
@@ -192998,8 +193010,8 @@ declare namespace PowerPoint {
|
|
|
192998
193010
|
*/
|
|
192999
193011
|
getCount(): OfficeExtension.ClientResult<number>;
|
|
193000
193012
|
/**
|
|
193001
|
-
* Gets a hyperlink using its zero-based index in the collection.
|
|
193002
|
-
Throws an `InvalidArgument` exception
|
|
193013
|
+
* Gets a hyperlink using its zero-based index in the collection.
|
|
193014
|
+
Throws an `InvalidArgument` exception if the index is out of range.
|
|
193003
193015
|
*
|
|
193004
193016
|
* @remarks
|
|
193005
193017
|
* [Api set: PowerPointApi 1.6]
|
|
@@ -198445,8 +198457,8 @@ declare namespace PowerPoint {
|
|
|
198445
198457
|
delete(): void;
|
|
198446
198458
|
/**
|
|
198447
198459
|
* Exports the slide to its own presentation file, returned as Base64-encoded data.
|
|
198448
|
-
|
|
198449
|
-
|
|
198460
|
+
|
|
198461
|
+
Note: This method is optimized to export a single slide. Exporting multiple slides can impact performance.
|
|
198450
198462
|
*
|
|
198451
198463
|
* @remarks
|
|
198452
198464
|
* [Api set: PowerPointApi 1.8]
|
|
@@ -200888,6 +200900,12 @@ declare namespace PowerPoint {
|
|
|
200888
200900
|
* [Api set: PowerPointApi 1.5]
|
|
200889
200901
|
*/
|
|
200890
200902
|
id?: string;
|
|
200903
|
+
/**
|
|
200904
|
+
* Returns the title of the presentation.
|
|
200905
|
+
*
|
|
200906
|
+
* @remarks
|
|
200907
|
+
* [Api set: PowerPointApi 1.0]
|
|
200908
|
+
*/
|
|
200891
200909
|
title?: string;
|
|
200892
200910
|
}
|
|
200893
200911
|
/** An interface describing the data returned by calling `adjustments.toJSON()`. */
|
|
@@ -202064,6 +202082,10 @@ declare namespace PowerPoint {
|
|
|
202064
202082
|
items?: PowerPoint.Interfaces.SlideMasterData[];
|
|
202065
202083
|
}
|
|
202066
202084
|
/**
|
|
202085
|
+
* The `Presentation` object is the top-level object with one or more slides that contain the contents of the presentation.
|
|
202086
|
+
To learn more about the PowerPoint object model,
|
|
202087
|
+
see {@link https://learn.microsoft.com/office/dev/add-ins/powerpoint/core-concepts | PowerPoint JavaScript object model}.
|
|
202088
|
+
*
|
|
202067
202089
|
* @remarks
|
|
202068
202090
|
* [Api set: PowerPointApi 1.0]
|
|
202069
202091
|
*/
|
|
@@ -202094,6 +202116,12 @@ declare namespace PowerPoint {
|
|
|
202094
202116
|
* [Api set: PowerPointApi 1.5]
|
|
202095
202117
|
*/
|
|
202096
202118
|
id?: boolean;
|
|
202119
|
+
/**
|
|
202120
|
+
* Returns the title of the presentation.
|
|
202121
|
+
*
|
|
202122
|
+
* @remarks
|
|
202123
|
+
* [Api set: PowerPointApi 1.0]
|
|
202124
|
+
*/
|
|
202097
202125
|
title?: boolean;
|
|
202098
202126
|
}
|
|
202099
202127
|
/**
|
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.654",
|
|
4
4
|
"description": "TypeScript definitions for office-js-preview",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
48
|
"peerDependencies": {},
|
|
49
|
-
"typesPublisherContentHash": "
|
|
49
|
+
"typesPublisherContentHash": "5a97a706cad05488969099f25c7dc3a3c2f05d6a5a3db1df45cf4ac59ddc4850",
|
|
50
50
|
"typeScriptVersion": "5.2",
|
|
51
51
|
"nonNpm": true
|
|
52
52
|
}
|