migros-api-wrapper
Version:
Making the api of migros more accessible to the public.
10 lines (8 loc) • 336 B
text/typescript
import { getProductCards } from "./product-cards";
import { getProductDetail } from "./product-detail";
import { getProductPromotionSearch } from "./product-promotion";
export const productDisplay = {
getProductCards: getProductCards,
getProductDetails: getProductDetail,
getProductPromotionSearch: getProductPromotionSearch,
};