@selldone/sdk-storefront
Version:
A TypeScript SDK to connect to your shop and build a fully functional storefront and website by simply developing a frontend web application. All backend operations are seamlessly managed by the serverless Selldone solution.
11 lines (10 loc) • 445 B
TypeScript
import { APIAbstract } from "@selldone/core-js/server/APIAbstract";
import XapiBasketAddItem from "./add-item/XapiBasketAddItem";
import XapiBasketDeleteItem from "./delete-item/XapiBasketDeleteItem";
export declare class XapiBasket extends APIAbstract {
shop_name: string;
addItem: typeof XapiBasketAddItem;
deleteItem: typeof XapiBasketDeleteItem;
constructor(shop_name: string);
}
export declare namespace XapiBasketTypes { }