UNPKG

@openfin/bloomberg

Version:

Connect apps running in OpenFin with the Bloomberg Terminal.

8 lines (7 loc) 270 B
export type BloombergAdapter = { channelName: string; dispatch: DispatchChannelClientMessage; initTerminal: (apiKey: string) => Promise<void>; version: string; }; export type DispatchChannelClientMessage = (action: string, payload: any) => Promise<any>;