import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' type HouseWishlistInput = { houseId: number } const deleteHouseWishlist = (http: HttpClient) => { return { query: ( input: HouseWishlistInput, ): Promise> => { return http.delete( `v3/user/house_multi_inquiry_wishlists/${input.houseId}`, ) }, } } export default deleteHouseWishlist