@openfin/workspace 18.1.13 → 18.1.15

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.
@@ -1,3 +0,0 @@
1
- import type OpenFin from '@openfin/core';
2
- import { ViewTabContextMenuTemplate } from '../../../client-api-platform/src/shapes';
3
- export declare const getChannelsMenuOptions: (channelsForViews: string[], colorGroups: OpenFin.ContextGroupInfo[]) => Promise<ViewTabContextMenuTemplate[]>;
@@ -1,20 +0,0 @@
1
- import type OpenFin from '@openfin/core';
2
- export declare enum InteropEventType {
3
- JoinedContextGroup = "joined-context-group",
4
- RemovedFromContextGroup = "removed-from-context-group"
5
- }
6
- export type InteropListener = (identity: OpenFin.Identity, contextGroupId: string) => void;
7
- /**
8
- * Returns contextGroup data.
9
- * @returns Promise<ContextGroup[]>
10
- */
11
- export declare function getContextGroups(): Promise<OpenFin.ContextGroupInfo[]>;
12
- export declare const joinContextGroup: (view: OpenFin.Identity, contextGroupId: string) => Promise<void>;
13
- export declare const removeFromGroup: (view: OpenFin.Identity) => Promise<void>;
14
- export declare function getViewContextGroupId(viewIdentity: OpenFin.Identity): Promise<string | null | undefined>;
15
- /**
16
- * Listen for interop events.
17
- * @param event the interop event to listen for.
18
- * @param listener the function to call when the event occurs.
19
- */
20
- export declare const addInteropListener: (event: InteropEventType, listener: InteropListener) => Promise<void>;