migros-api-wrapper
Version:
Making the api of migros more accessible to the public.
9 lines (8 loc) • 369 B
TypeScript
import { getProductCards } from "./product-cards";
import { getProductDetail } from "./product-detail";
import { getProductPromotionSearch } from "./product-promotion";
export declare const productDisplay: {
getProductCards: typeof getProductCards;
getProductDetails: typeof getProductDetail;
getProductPromotionSearch: typeof getProductPromotionSearch;
};