@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.
9 lines (8 loc) • 356 B
TypeScript
import { Currency, ICurrency } from "@selldone/core-js/enums/payment/Currency";
export declare class CurrencyDatabase {
/** Name of the shop for which the API operations will be performed. */
shop_name: string;
constructor(shop_name: string);
getCurrency(): ICurrency;
saveCurrency(currency: ICurrency | keyof typeof Currency): void;
}