import { Order } from "./order";

export interface OrdersListResponse {
    orders: Order[];
    limit: number;
    cursor?: string;
}