import type { Wishlist } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' type WishlistInput = { wishlistToken: string } const deleteWishlist = (http: HttpClient) => { return { query: ( input: WishlistInput, ): Promise> => { return http.delete( `v3/user/multi_inquiry_wishlists/${input.wishlistToken}`, ) }, } } export default deleteWishlist