import type { StatisticResponse } from "@/features/home/lib/type"; import httpClient from "@/shared/config/api/httpClient"; import { API_URLS } from "@/shared/config/api/URLs"; import type { AxiosResponse } from "axios"; export const statisticApi = { async fetchStatistics(): Promise> { const response = await httpClient.get(API_URLS.Statistica); return response.data; }, };