Interface IBook

interface IBook {
    channel: "book";
    data: [{
        asks: [string, string][];
        bids: [string, string][];
        createTime: number;
        id: number;
        symbol: string;
        ts: number;
    }];
}

Properties

Properties

channel: "book"
data: [{
    asks: [string, string][];
    bids: [string, string][];
    createTime: number;
    id: number;
    symbol: string;
    ts: number;
}]

Type declaration

  • asks: [string, string][]
  • bids: [string, string][]
  • createTime: number
  • id: number
  • symbol: string
  • ts: number