import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type SendHousesVatRecoverysInput = { year: string month: string } const sendHousesVatRecoverys = (http: HttpClient) => ({ query: ( input: SendHousesVatRecoverysInput, ): Promise> => { return http.post(`v3/admin/financial_reports/houses_vat_recoverys`, input, { headers: { 'Content-Type': 'multipart/form-data' }, }) }, }) export default sendHousesVatRecoverys