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