migros-api-wrapper
Version:
Making the api of migros more accessible to the public.
9 lines (8 loc) • 328 B
TypeScript
import { postRecipeSearch } from "./recipe-search";
import { getRecipeProducts } from "./recipe-products";
import { getRecipeDetails } from "./recipe-details";
export declare const migusto: {
recipeSearch: typeof postRecipeSearch;
recipeProducts: typeof getRecipeProducts;
recipeDetails: typeof getRecipeDetails;
};