UNPKG

@openfin/bloomberg

Version:

Connect apps running in OpenFin with the Bloomberg Terminal.

9 lines (8 loc) 545 B
import type OpenFin from '@openfin/core'; import { BloombergAdapter } from './adapter.types'; export declare const channelExists: (channelName: string) => Promise<boolean>; export declare const downloadAdapterPackage: () => Promise<void>; export declare const init: (adapterLoggingEnabled?: boolean) => Promise<BloombergAdapter>; export declare const logMessageTopicHandler: OpenFin.ChannelAction; export declare const subscriptionEventTopicHandler: OpenFin.ChannelAction; export declare const useExistingAdapterPackage: () => Promise<boolean>;