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.

12 lines (11 loc) 252 B
export class PromiseWrapper { constructor() { this._promise = new Promise((res, rej) => { this.resolve = res; this.reject = rej; }); } get promise() { return this._promise; } }