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.

11 lines (10 loc) 357 B
/** * Class for generating a unique user-defined ID. * The constructor accepts optional string parameters (used as hyphen-delimited prefixes for the generated ID). */ declare class CorrelationId { readonly value: string; constructor(...prefixes: (string | null | undefined)[]); } export { CorrelationId }; export default CorrelationId;