Files
jnc-admin/playground/src/views/demos/features/vue-query/typing.ts

19 lines
338 B
TypeScript
Raw Normal View History

2026-01-13 19:38:29 +08:00
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;
}