@openfin/workspace-platform 23.0.5 → 23.0.9
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/common/src/utils/window.d.ts +2 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/workspace_platform.zip +0 -0
|
@@ -156,6 +156,7 @@ export declare function getModalWindows(): Promise<OpenFin.Window[]>;
|
|
|
156
156
|
* Returns true if the OpenFin window for the provided identity is running.
|
|
157
157
|
* */
|
|
158
158
|
export declare const isWindowRunning: (identity: WindowIdentity) => Promise<boolean>;
|
|
159
|
+
export declare const isApplicationRunning: (uuid: string) => Promise<boolean>;
|
|
159
160
|
/**
|
|
160
161
|
* Check if Storefront window is running.
|
|
161
162
|
* @returns true if the Storefront window is running.
|
|
@@ -163,7 +164,7 @@ export declare const isWindowRunning: (identity: WindowIdentity) => Promise<bool
|
|
|
163
164
|
export declare const isStorefrontWindowRunning: () => Promise<boolean>;
|
|
164
165
|
export declare const isDockWindowRunning: () => Promise<boolean>;
|
|
165
166
|
export declare const isHomeWindowRunning: () => Promise<boolean>;
|
|
166
|
-
export declare const
|
|
167
|
+
export declare const isNotificationCenterRunning: () => Promise<boolean>;
|
|
167
168
|
export declare const showAndFocusStorefront: () => Promise<void>;
|
|
168
169
|
export declare const showAndFocusDock: () => Promise<void>;
|
|
169
170
|
export declare const getDisableMultiplePagesOption: (identity: WindowIdentity) => Promise<any>;
|