@openfin/workspace-platform 18.1.9 → 18.1.10
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/api/pages/helper.d.ts +1 -2
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type OpenFin from '@openfin/core';
|
|
2
2
|
import { AttachedPageInternal } from '../../../../common/src/api/pages/shapes';
|
|
3
|
-
import type { AttachedPage } from '../../../../client-api-platform/src/shapes';
|
|
4
3
|
export interface PagesLayoutSnapshot {
|
|
5
4
|
layouts: {
|
|
6
5
|
[layoutContainerKey: string]: OpenFin.LayoutOptions;
|
|
@@ -11,4 +10,4 @@ export declare const convertPagesToLayoutSnapshot: (pages: AttachedPageInternal[
|
|
|
11
10
|
layouts: Record<string, OpenFin.LayoutOptions>;
|
|
12
11
|
pages: AttachedPageInternal[];
|
|
13
12
|
};
|
|
14
|
-
export declare const convertLayoutSnapshotToPages: ({ pages, layouts }: PagesLayoutSnapshot) =>
|
|
13
|
+
export declare const convertLayoutSnapshotToPages: ({ pages, layouts }: PagesLayoutSnapshot) => AttachedPageInternal[];
|