@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.
14 lines (13 loc) • 459 B
TypeScript
import { APIAbstract } from "@selldone/core-js/server/APIAbstract";
import { XapiAuthSMS } from "./sms/XapiAuthSMS";
import { XapiAuthEmail } from "@selldone/sdk-storefront/auth/email/XapiAuthEmail";
export declare class XapiAuth extends APIAbstract {
shop_name: string;
sms: XapiAuthSMS;
email: XapiAuthEmail;
constructor(shop_name: string);
logout(): Promise<{
success: true;
}>;
}
export declare namespace XapiAuthTypes { }