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