Files
asan-installer-front/src/services/api/awards.ts
T
Alihaghighattalab 855cbc414d push for fix bug!
2024-08-14 14:21:08 +03:30

18 lines
362 B
TypeScript

import axiosInstance from "../axios";
export interface AwardsResponse {
_id: string,
score: number,
title: string,
desc: string,
expireDate: string,
created_at: string,
updated_at: string,
__v: number,
id: string
}
export const getAwardsList = () => axiosInstance.get<AwardsResponse[] | AwardsResponse | []>("/gps/award")