@openfin/workspace 19.1.15 → 19.1.16

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.
@@ -0,0 +1,7 @@
1
+ export declare class Mutex {
2
+ private queue;
3
+ private locked;
4
+ constructor();
5
+ lock(): Promise<void>;
6
+ unlock(): void;
7
+ }
@@ -105,6 +105,8 @@ export declare const findViewInLayout: (node: any, viewId: OpenFin.Identity) =>
105
105
  * @returns The total number of views in the layout configuration.
106
106
  */
107
107
  export declare const countViews: (node: OpenFin.LayoutContent) => number;
108
+ export declare const getLayoutConfig: (layoutContainerKey: string) => Promise<any>;
109
+ export declare const updateTabStateBasedOnViewCount: (page: AttachedPageInternal, viewCount: number) => Promise<void>;
108
110
  export declare const updatePageForViewCount: (activePage: AttachedPageInternal) => Promise<void>;
109
111
  export declare const debouncedUpdatePageForViewCount: import("lodash").DebouncedFunc<(activePage: AttachedPageInternal) => Promise<void>>;
110
112
  export declare const findPageForView: (viewName: string, browserWindowIdentity?: WindowIdentity) => Promise<AttachedPage | undefined>;