File size: 339 Bytes
41a71fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { $api } from '@/shared/api/axiosInstance';
type DeletePostProps = {
post_id: number;
};
type DeletePostResponse = {
status: number;
message: string;
};
export const deletePost = async (props: DeletePostProps) => {
const { data } = await $api.post<DeletePostResponse>(`/posts/delete`, props);
return data;
};
|