commerce/framework/local/api/operations/get-customer-wishlist.ts
2021-06-10 16:44:34 -03:00

7 lines
160 B
TypeScript

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