@barchart/chart-lib 2.337.0 → 2.338.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2369,6 +2369,8 @@ declare module "@barchart/chart-lib" {
2369
2369
  getRecordSource(): IRecordSource;
2370
2370
  /** Perform any cleanup: close connections, unsubscribe etc. */
2371
2371
  shutdown(): void;
2372
+ /** Returns true if this is an auxiliary feed, only for multi-window scenarios. */
2373
+ isAuxiliary: boolean;
2372
2374
  }
2373
2375
 
2374
2376
  export type Factory<T> = new () => T;
@@ -2390,6 +2392,7 @@ declare module "@barchart/chart-lib" {
2390
2392
  multiplexer: any;
2391
2393
  listener?: any;
2392
2394
  adapter?: any;
2395
+ addAuxFeed(auxFeed: OpenFeed): void;
2393
2396
  }
2394
2397
 
2395
2398
  class SnapshotDataFeed extends BaseDataFeed {}