@types/office-js 1.0.538 → 1.0.540
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: Wed, 24 Sep 2025 21:02:30 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -874,7 +874,7 @@ declare namespace Office {
|
|
|
874
874
|
* Specifies the Office application in which the add-in is running.
|
|
875
875
|
*
|
|
876
876
|
* @remarks
|
|
877
|
-
* **Important**: In Outlook, this enum is available
|
|
877
|
+
* **Important**: In Outlook, this enum is available starting with Mailbox requirement set 1.5.
|
|
878
878
|
*/
|
|
879
879
|
enum HostType {
|
|
880
880
|
/**
|
|
@@ -946,7 +946,7 @@ declare namespace Office {
|
|
|
946
946
|
* Specifies the OS or other platform on which the Office application is running.
|
|
947
947
|
*
|
|
948
948
|
* @remarks
|
|
949
|
-
* **Important**: In Outlook, this enum is available
|
|
949
|
+
* **Important**: In Outlook, this enum is available starting with Mailbox requirement set 1.5.
|
|
950
950
|
*/
|
|
951
951
|
enum PlatformType {
|
|
952
952
|
/**
|
|
@@ -4661,7 +4661,7 @@ declare namespace Office {
|
|
|
4661
4661
|
* Gets information about the environment in which the add-in is running.
|
|
4662
4662
|
*
|
|
4663
4663
|
* @remarks
|
|
4664
|
-
* **Important**: In Outlook, this property is available
|
|
4664
|
+
* **Important**: In Outlook, this property is available starting with Mailbox requirement set 1.5.
|
|
4665
4665
|
* For all Mailbox requirement sets, you can use the
|
|
4666
4666
|
* {@link https://learn.microsoft.com/javascript/api/outlook/office.mailbox?view=outlook-js-1.1&preserve-view=true#outlook-office-mailbox-diagnostics-member | Office.context.mailbox.diagnostics}
|
|
4667
4667
|
* property to get similar information.
|
|
@@ -4703,7 +4703,7 @@ declare namespace Office {
|
|
|
4703
4703
|
* Contains the Office application in which the add-in is running.
|
|
4704
4704
|
*
|
|
4705
4705
|
* @remarks
|
|
4706
|
-
* **Important**: In Outlook, this property is available
|
|
4706
|
+
* **Important**: In Outlook, this property is available starting with Mailbox requirement set 1.5. You can also use the
|
|
4707
4707
|
* `Office.context.diagnostics` property to get the application starting with requirement set 1.5. For all
|
|
4708
4708
|
* Mailbox requirement sets, you can use the
|
|
4709
4709
|
* {@link https://learn.microsoft.com/javascript/api/outlook/office.mailbox?view=outlook-js-1.1&preserve-view=true#outlook-office-mailbox-diagnostics-member | Office.context.mailbox.diagnostics}
|
|
@@ -4750,7 +4750,7 @@ declare namespace Office {
|
|
|
4750
4750
|
* @remarks
|
|
4751
4751
|
* **Important**:
|
|
4752
4752
|
*
|
|
4753
|
-
* - In Outlook, this property is available
|
|
4753
|
+
* - In Outlook, this property is available starting with Mailbox requirement set 1.5. You can also use the
|
|
4754
4754
|
* `Office.context.diagnostics` property to get the platform starting with requirement set 1.5. For all
|
|
4755
4755
|
* Mailbox requirement sets, you can use the
|
|
4756
4756
|
* {@link https://learn.microsoft.com/javascript/api/outlook/office.mailbox?view=outlook-js-1.1&preserve-view=true#outlook-office-mailbox-diagnostics-member | Office.context.mailbox.diagnostics}
|
|
@@ -4834,7 +4834,7 @@ declare namespace Office {
|
|
|
4834
4834
|
* Provides information about the environment in which the add-in is running.
|
|
4835
4835
|
*
|
|
4836
4836
|
* @remarks
|
|
4837
|
-
* **Important**: In Outlook, this object is available
|
|
4837
|
+
* **Important**: In Outlook, this object is available starting with Mailbox requirement set 1.5.
|
|
4838
4838
|
* For all Mailbox requirement sets, you can use the
|
|
4839
4839
|
* {@link https://learn.microsoft.com/javascript/api/outlook/office.mailbox?view=outlook-js-1.1&preserve-view=true#outlook-office-mailbox-diagnostics-member | Office.context.mailbox.diagnostics}
|
|
4840
4840
|
* property to get similar information.
|
|
@@ -132128,7 +132128,7 @@ declare namespace PowerPoint {
|
|
|
132128
132128
|
*/
|
|
132129
132129
|
text?: string;
|
|
132130
132130
|
/**
|
|
132131
|
-
* Specifies the contents of the table cell as an array of {@link TextRun} objects.
|
|
132131
|
+
* Specifies the contents of the table cell as an array of {@link PowerPoint.TextRun} objects.
|
|
132132
132132
|
Each `TextRun` object represents a sequence of one or more characters that share the same font attributes.
|
|
132133
132133
|
*
|
|
132134
132134
|
* @remarks
|
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.540",
|
|
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": "02d198080296d9500282a1cafcf35a27aa27eb76e334123194102062f2347018",
|
|
50
50
|
"typeScriptVersion": "5.2"
|
|
51
51
|
}
|