typing.ts 338 B

123456789101112131415161718
  1. export interface IProducts {
  2. limit: number;
  3. products: {
  4. brand: string;
  5. category: string;
  6. description: string;
  7. discountPercentage: string;
  8. id: string;
  9. images: string[];
  10. price: string;
  11. rating: string;
  12. stock: string;
  13. thumbnail: string;
  14. title: string;
  15. }[];
  16. skip: number;
  17. total: number;
  18. }