UNPKG

@crypdex/hydro-sdk

Version:

Javascript SDK for the Hydro API

20 lines (19 loc) 405 B
import { Trade } from "./Trade"; /** * A paginated list of trades */ export declare class TradeList { /** * The total number of pages available on the server */ readonly totalPages: number; /** * The current page this list represents */ readonly currentPage: number; /** * A list of trades */ readonly trades: Trade[]; constructor(json: any); }