migros-api-wrapper
Version:
Making the api of migros more accessible to the public.
10 lines (9 loc) • 402 B
TypeScript
import { Language } from "../enums/Language";
import { IRecipeProductsResponse } from "../interfaces/migusto/recipe-products";
export interface IRecipeProductOptions extends Record<string, any> {
id: string;
language?: Language;
limit?: number;
offset?: number;
}
export declare function getRecipeProducts(recipeProductOptions: IRecipeProductOptions): Promise<IRecipeProductsResponse>;