UNPKG

@hydro-protocol/hydro-client-js

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