migros-api-wrapper
Version:
Making the api of migros more accessible to the public.
14 lines (13 loc) • 551 B
TypeScript
import { StoreType } from "../enums/StoreType";
import { Region } from "../enums/Region";
import { IMigrosNecessaryHeaders } from "../interfaces/headers";
export interface IProductDetailOptions extends Record<string, any> {
uids?: string | string[];
storeType?: StoreType;
region?: Region;
newCategoryTree?: boolean;
warehouseId?: number;
ongoingOfferDate?: string;
migrosIds?: string;
}
export declare function getProductDetail(productDetailOptions: IProductDetailOptions, headers: IMigrosNecessaryHeaders): Promise<any>;