@microsoft/teams-js 2.6.1 → 2.7.0-beta.0
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.
package/dist/MicrosoftTeams.d.ts
CHANGED
@@ -131,7 +131,7 @@ export interface FilePreviewParameters {
|
|
131
131
|
* @internal
|
132
132
|
* Limited to Microsoft-internal use
|
133
133
|
*/
|
134
|
-
entityId
|
134
|
+
entityId?: string;
|
135
135
|
/**
|
136
136
|
* @hidden
|
137
137
|
* The display name of the file.
|
@@ -139,7 +139,7 @@ export interface FilePreviewParameters {
|
|
139
139
|
* @internal
|
140
140
|
* Limited to Microsoft-internal use
|
141
141
|
*/
|
142
|
-
title
|
142
|
+
title?: string;
|
143
143
|
/**
|
144
144
|
* @hidden
|
145
145
|
* An optional description of the file.
|
@@ -3932,7 +3932,7 @@ export namespace app {
|
|
3932
3932
|
* Initialize must have completed successfully (as determined by the resolved Promise) before any other library calls are made
|
3933
3933
|
*
|
3934
3934
|
* @param validMessageOrigins - Optionally specify a list of cross frame message origins. They must have
|
3935
|
-
* https: protocol otherwise they will be ignored. Example: https
|
3935
|
+
* https: protocol otherwise they will be ignored. Example: https://www.example.com
|
3936
3936
|
* @returns Promise that will be fulfilled when initialization has completed, or rejected if the initialization fails or times out
|
3937
3937
|
*/
|
3938
3938
|
function initialize(validMessageOrigins?: string[]): Promise<void>;
|
@@ -4872,7 +4872,7 @@ export namespace pages {
|
|
4872
4872
|
* Checks if pages.currentApp capability is supported by the host
|
4873
4873
|
* @returns boolean to represent whether the pages.currentApp capability is supported
|
4874
4874
|
*
|
4875
|
-
* @throws Error if {@linkcode app.initialize} has not successfully
|
4875
|
+
* @throws Error if {@linkcode app.initialize} has not successfully completed
|
4876
4876
|
*
|
4877
4877
|
* @beta
|
4878
4878
|
*/
|