mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-08 07:31:09 +08:00
* chore(@vben/request): add axios-retry * feat: error retry * feat: paginated queries * feat: infinite queries * chore: update * chore: update * fix: ci error * chore: update * chore: remove axios-retry * chore: update deps * chore: update deps * chore: update deps * chore: update pnpm.lock --------- Co-authored-by: vince <vince292007@gmail.com>
19 lines
338 B
TypeScript
19 lines
338 B
TypeScript
export interface IProducts {
|
|
limit: number;
|
|
products: {
|
|
brand: string;
|
|
category: string;
|
|
description: string;
|
|
discountPercentage: string;
|
|
id: string;
|
|
images: string[];
|
|
price: string;
|
|
rating: string;
|
|
stock: string;
|
|
thumbnail: string;
|
|
title: string;
|
|
}[];
|
|
skip: number;
|
|
total: number;
|
|
}
|