@types/office-js-preview 1.0.262 → 1.0.263
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: Mon, 25 Oct 2021 23:31:48 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
|
@@ -12676,6 +12676,8 @@ declare namespace Office {
|
|
|
12676
12676
|
* **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
12677
12677
|
*
|
|
12678
12678
|
* **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
12679
|
+
*
|
|
12680
|
+
* @beta
|
|
12679
12681
|
*/
|
|
12680
12682
|
interface DelayDeliveryTime {
|
|
12681
12683
|
/**
|
|
@@ -12692,6 +12694,8 @@ declare namespace Office {
|
|
|
12692
12694
|
* `asyncContext`: Developers can provide any object they wish to access in the callback method.
|
|
12693
12695
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
|
|
12694
12696
|
* `asyncResult`, which is an `Office.AsyncResult` object.
|
|
12697
|
+
*
|
|
12698
|
+
* @beta
|
|
12695
12699
|
*/
|
|
12696
12700
|
getAsync(options: Office.AsyncContextOptions, callback?: (asyncResult: Office.AsyncResult<Date>) => void): void;
|
|
12697
12701
|
/**
|
|
@@ -12706,6 +12710,8 @@ declare namespace Office {
|
|
|
12706
12710
|
*
|
|
12707
12711
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
|
|
12708
12712
|
* `asyncResult`, which is an `Office.AsyncResult` object.
|
|
12713
|
+
*
|
|
12714
|
+
* @beta
|
|
12709
12715
|
*/
|
|
12710
12716
|
getAsync(callback?: (asyncResult: Office.AsyncResult<Date>) => void): void;
|
|
12711
12717
|
/**
|
|
@@ -12723,6 +12729,8 @@ declare namespace Office {
|
|
|
12723
12729
|
* `asyncContext`: Developers can provide any object they wish to access in the callback method.
|
|
12724
12730
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
|
|
12725
12731
|
* of type Office.AsyncResult. Any errors encountered will be provided in the `asyncResult.error` property.
|
|
12732
|
+
*
|
|
12733
|
+
* @beta
|
|
12726
12734
|
*/
|
|
12727
12735
|
setAsync(datetime: Date, options: Office.AsyncContextOptions, callback?: (asyncResult: Office.AsyncResult<void>) => void): void;
|
|
12728
12736
|
/**
|
|
@@ -12738,6 +12746,8 @@ declare namespace Office {
|
|
|
12738
12746
|
* @param datetime - The future date and time when the message should be sent.
|
|
12739
12747
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
|
|
12740
12748
|
* of type Office.AsyncResult. Any errors encountered will be provided in the `asyncResult.error` property.
|
|
12749
|
+
*
|
|
12750
|
+
* @beta
|
|
12741
12751
|
*/
|
|
12742
12752
|
setAsync(datetime: Date, callback?: (asyncResult: Office.AsyncResult<void>) => void): void;
|
|
12743
12753
|
}
|
|
@@ -14694,6 +14704,8 @@ declare namespace Office {
|
|
|
14694
14704
|
* **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: `ReadItem`
|
|
14695
14705
|
*
|
|
14696
14706
|
* **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
|
|
14707
|
+
*
|
|
14708
|
+
* @beta
|
|
14697
14709
|
*/
|
|
14698
14710
|
delayDeliveryTime: DelayDeliveryTime;
|
|
14699
14711
|
/**
|
|
@@ -16817,6 +16829,7 @@ declare namespace Office {
|
|
|
16817
16829
|
*
|
|
16818
16830
|
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
|
|
16819
16831
|
* type `Office.AsyncResult`.
|
|
16832
|
+
*
|
|
16820
16833
|
* @beta
|
|
16821
16834
|
*/
|
|
16822
16835
|
getAsync(callback: (asyncResult: Office.AsyncResult<boolean>) => void): void;
|
|
@@ -17147,6 +17160,8 @@ declare namespace Office {
|
|
|
17147
17160
|
*
|
|
17148
17161
|
* @remarks
|
|
17149
17162
|
* [Api set: Mailbox preview]
|
|
17163
|
+
*
|
|
17164
|
+
* @beta
|
|
17150
17165
|
*/
|
|
17151
17166
|
officeTheme: Office.OfficeTheme;
|
|
17152
17167
|
/**
|
|
@@ -17154,6 +17169,8 @@ declare namespace Office {
|
|
|
17154
17169
|
*
|
|
17155
17170
|
* @remarks
|
|
17156
17171
|
* [Api set: Mailbox preview]
|
|
17172
|
+
*
|
|
17173
|
+
* @beta
|
|
17157
17174
|
*/
|
|
17158
17175
|
type: "officeThemeChanged";
|
|
17159
17176
|
}
|
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.263",
|
|
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",
|
|
@@ -40,6 +40,6 @@
|
|
|
40
40
|
},
|
|
41
41
|
"scripts": {},
|
|
42
42
|
"dependencies": {},
|
|
43
|
-
"typesPublisherContentHash": "
|
|
43
|
+
"typesPublisherContentHash": "bbcb97efb8d239cd6c569dd3f1c6b272877f4bc67024639fb89b1535985a4ff7",
|
|
44
44
|
"typeScriptVersion": "3.7"
|
|
45
45
|
}
|