Files
LogisicsApp_Client/services/dashboard.service.ts

7 lines
230 B
TypeScript

import { get } from "./api";
import type { DashboardSummaryResponse } from "../types/dashboard";
export const dashboardService = {
getSummary: (token: string) =>
get<DashboardSummaryResponse>("dashboard/summary", token),
};