UNPKG

@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.

8 lines (7 loc) 267 B
import type { ILanguage } from "@selldone/core-js/enums/language/Language"; export declare class LanguageDatabase { shop_name: string; constructor(shop_name: string); getLanguage(): ILanguage | null; setLanguage(language: ILanguage | string): void; }