| 12345678910111213141516171819202122232425262728 |
- import { ProductData } from '../../utils/interface/productInterface';
- import apiEndpoints from '../apiEndpoints';
-
- interface ProductDataDB extends ProductData {
- id: string;
- _id: string;
- __v: number;
- }
-
- interface FeaturedProductsResponse {
- message: string;
- featuredProducts: Array<ProductDataDB>;
- }
-
- export const getFeaturedProducts =
- async (): Promise<FeaturedProductsResponse> => {
- const response = await fetch(
- `http://localhost:3000${apiEndpoints.featuredProducts}`
- );
-
- const data: FeaturedProductsResponse = await response.json();
-
- if (!response.ok) {
- throw new Error(data.message || 'Something went wrong!');
- }
-
- return data;
- };
|