migros-api-wrapper
Version:
Making the api of migros more accessible to the public.
23 lines (22 loc) • 1.12 kB
TypeScript
import { getCumulusStats } from "./stats";
import { getCumulusReceipt, getCumulusReceiptFromUrl, getCumulusReceipts } from "./receipts";
import { getCumulusPrincipal } from "./principal";
import { getCumulusServicesSmall } from "./services";
import { getCumulusPaymentSites } from "./payment-sites";
import { getCumulusCreditCard } from "./credit-card";
import { getCumulusHousehold } from "./household";
import { getCumulusInvoice } from "./invoice";
import { getCumulusSession } from "./session";
export declare const cumulus: {
getCumulusSession: typeof getCumulusSession;
getCumulusStats: typeof getCumulusStats;
getCumulusReceipt: typeof getCumulusReceipt;
getCumulusReceiptFromUrl: typeof getCumulusReceiptFromUrl;
getCumulusReceipts: typeof getCumulusReceipts;
getCumulusPrincipal: typeof getCumulusPrincipal;
getCumulusServicesSmall: typeof getCumulusServicesSmall;
getCumulusPaymentSites: typeof getCumulusPaymentSites;
getCumulusCreditCard: typeof getCumulusCreditCard;
getCumulusHousehold: typeof getCumulusHousehold;
getCumulusInvoice: typeof getCumulusInvoice;
};