import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type GetTouristTaxInput = { id: string } const getTouristTax = (http: HttpClient) => ({ query: ( input: GetTouristTaxInput, ): Promise> => { return http.get(`v3/admin/exports/tourist_taxes/${input.id}`, { responseType: 'blob', }) }, }) export default getTouristTax