commerce/lib/spree/api/operations/get-customer-wishlist.ts
2024-05-21 20:00:11 +05:00

7 lines
162 B
TypeScript

export default function getCustomerWishlistOperation() {
function getCustomerWishlist(): any {
return { wishlist: {} };
}
return getCustomerWishlist;
}