import type { Theme } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' const getThemes = (http: HttpClient) => ({ query: (): Promise> => { return http.get(`v3/admin/themes`) }, }) export default getThemes