7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
|
|
import { apiFetch } from './client';
|
||
|
|
import { TypeListProductDeal } from '@/types';
|
||
|
|
|
||
|
|
export function getDeals() {
|
||
|
|
return apiFetch<TypeListProductDeal>('/deals');
|
||
|
|
}
|