export default interface TickerBookResponse { symbol: string; bidPrice: string; bidQuantity: string; askPrice: string; askQuantity: string; } export interface DirtyTickerBookResponse extends TickerBookResponse { bidQty: string; askQty: string; }