UNPKG

@glue42/bbg-market-data

Version:

A high-level API that wraps existing Glue42 Bloomberg Bridge Market Data interop methods. The API is based on the jBloomberg open source wrapper.

7 lines (6 loc) 191 B
export interface Sequence { enqueue: <T>(action: () => Promise<T>) => Promise<T>; clear: () => void; run: () => void; } export declare const createSequence: () => Sequence;