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