mirror of
https://github.com/vercel/commerce.git
synced 2025-06-16 04:11:22 +00:00
7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
export default function getCustomerWishlistOperation() {
|
|
function getCustomerWishlist(): any {
|
|
return { wishlist: {} };
|
|
}
|
|
return getCustomerWishlist;
|
|
}
|