import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' const signOut = (http: HttpClient) => { return { query: (): Promise> => { return http.delete('v1/auth/sign_out') }, } } export default signOut