UNPKG

@reactivemarkets/switchboard-sdk

Version:
17 lines (16 loc) 389 B
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[]; }