UNPKG

ccxws

Version:

Websocket client for 37 cryptocurrency exchanges

11 lines (10 loc) 233 B
/** * Level 3 order book point */ export declare class L3Point { orderId: string; price: number; size: number; timestamp: number; constructor(orderId: string, price: number, size: number, timestamp?: number); }