@stoqey/ib
Version:
Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)
14 lines (13 loc) • 484 B
TypeScript
/**
* Base-interface for updates events on a list of data items.
*/
export interface ItemListUpdate<T> {
/** All items with its latest values, as received by TWS. */
readonly all: T;
/** Items that have been added since last [[IBApiNextUpdate]]. */
readonly added?: T;
/** Items that have been changed since last [[IBApiNextUpdate]]. */
readonly changed?: T;
/** Items that has been removed since last [[IBApiNextUpdate]]. */
readonly removed?: T;
}