import type { Mandate } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type GetContractInformationInput = { houseId: string } const getContractInformation = (http: HttpClient) => { return { query: ( input: GetContractInformationInput, ): Promise> => { return http.get(`v3/user/houses/${input.houseId}/contract_information`) }, } } export default getContractInformation