@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.
24 lines (23 loc) • 548 B
TypeScript
import { Gapi } from "./gapi/Gapi";
import { GAPI } from "./server/GAPI";
import "./utils/console/ConsoleStyle";
import { CDN } from "./server/CDN";
import { URLS } from "./server/URLS";
import Cookie from "./utils/cookie/cookie";
declare global {
interface Window {
axios: any;
CDN: CDN;
URLS: URLS;
GAPI: GAPI;
$selldone: {
gapi: Gapi;
};
$cookies: typeof Cookie;
}
}
export declare class SelldoneCore {
static Setup({ i18n }?: {
i18n?: any;
}): void;
}