@openfin/workspace-platform 17.2.2 → 17.2.3
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.
|
@@ -5,4 +5,4 @@ import type { LaunchAppRequest } from '../shapes';
|
|
|
5
5
|
* @param app the app directory entry.
|
|
6
6
|
* @param opts launch options.
|
|
7
7
|
*/
|
|
8
|
-
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.
|
|
8
|
+
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.Application | OpenFin.Identity | OpenFin.View | OpenFin.Platform>;
|
|
@@ -10,18 +10,22 @@ export interface ShowBrowserIndicatorPayload {
|
|
|
10
10
|
icon?: BrowserIndicatorIcon;
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
|
-
* Creates a window containing a visual indicator
|
|
13
|
+
* Creates a window containing a visual indicator contained in a Browser Window
|
|
14
14
|
*/
|
|
15
|
-
export declare function showBrowserIndicator(type: IndicatorType, message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<
|
|
15
|
+
export declare function showBrowserIndicator(type: IndicatorType, message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<void>;
|
|
16
16
|
/**
|
|
17
17
|
* Creates a window containing an error indicator
|
|
18
18
|
*/
|
|
19
|
-
export declare function showBrowserError(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<
|
|
19
|
+
export declare function showBrowserError(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<void>;
|
|
20
20
|
/**
|
|
21
21
|
* Creates a window containing a success indicator
|
|
22
22
|
*/
|
|
23
|
-
export declare function showBrowserSuccess(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<
|
|
23
|
+
export declare function showBrowserSuccess(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<void>;
|
|
24
24
|
/**
|
|
25
25
|
* Creates a window containing an info indicator
|
|
26
26
|
*/
|
|
27
|
-
export declare function showBrowserInfo(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<
|
|
27
|
+
export declare function showBrowserInfo(message: string, parentBrowserName?: string, icon?: BrowserIndicatorIcon): Promise<void>;
|
|
28
|
+
/**
|
|
29
|
+
* Creates a window centered on monitor containing a success indicator for switching workspaces
|
|
30
|
+
*/
|
|
31
|
+
export declare function showSwitchWorkspaceSuccess(): Promise<void>;
|