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