UNPKG

shrimpy-node

Version:
13 lines (10 loc) 297 B
export type ISubscriptionRequest = IExchangeSubscription | IOrderSubscription; export interface IExchangeSubscription { type: 'subscribe' | 'unsubscribe'; exchange: string; pair: string; channel: string; } export interface IOrderSubscription { channel: string; }