commerce/packages/spree/api/operations/get-customer-wishlist.ts
2022-01-14 20:44:48 -05:00

7 lines
160 B
TypeScript

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