@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.
12 lines (11 loc) • 474 B
TypeScript
import { CouponDatabase } from "./localstorage/coupon.database";
import { CurrencyDatabase } from "./localstorage/currency.database";
import { LanguageDatabase } from "./localstorage/language.database";
export declare class StorefrontDatabase {
/** Name of the shop for which the API operations will be performed. */
shop_name: string;
coupon: CouponDatabase;
currency: CurrencyDatabase;
language: LanguageDatabase;
constructor(shop_name: string);
}