import type { SaleInformation } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type GetSaleInformationInput = { houseId: string } const getSaleInformation = (http: HttpClient) => ({ query: ( input: GetSaleInformationInput, ): Promise> => { return http.get(`v3/admin/houses/${input.houseId}/sale_information`) }, }) export default getSaleInformation