File size: 244 Bytes
41a71fd
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { $api } from '@/shared/api/axiosInstance';

type LogoutResponse = {
    status: number;
    message: string;
};

export const signOut = async () => {
    const { data } = await $api.post<LogoutResponse>(`/logout`);

    return data;
};