export interface IGetListParams { pageNo: number; pageSize: number; sortBy: string; order: string; category: number; } export interface IGetListResult { total: number; has_next: boolean; count: number; data: IProduct[]; } export interface IProduct { id: number; name: string; image_url: string; count: number; fixed_price: number; highest_price: string; status: string; sale_type: string; token_id: string; sale_address: string; } //# sourceMappingURL=get-list.interface.d.ts.map