import type { ExportFigaro } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' const addExport = (http: HttpClient) => ({ query: (): Promise> => { return http.post(`v3/admin/exports/figaro`, {}) }, }) export default addExport