@reactivemarkets/switchboard-sdk
Version:
SDK for the Reactive Markets Switchboard
17 lines (16 loc) • 389 B
TypeScript
import { IMarket } from "./iMarket";
import { ISubscription } from "./iSubscription";
export interface IMarketDataSubscription extends ISubscription {
/**
* The trading account.
*
* @readonly
*/
readonly account: string;
/**
* The set of markets this subscription applies to.
*
* @readonly
*/
readonly markets: readonly IMarket[];
}