@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.
16 lines (15 loc) • 839 B
TypeScript
import { APIAbstract } from "@selldone/core-js/server/APIAbstract";
import XapiAuthSMSRequestOtp from "@selldone/sdk-storefront/auth/sms/request-otp/XapiAuthSMSRequestOtp";
import XapiAuthSMSVerifyOtp from "@selldone/sdk-storefront/auth/sms/verify-otp/XapiAuthSMSVerifyOtp";
import XapiAuthSMSRegisterUser from "@selldone/sdk-storefront/auth/sms/register-user/XapiAuthSMSRegisterUser";
import XapiAuthSMSSelectUser from "@selldone/sdk-storefront/auth/sms/select-user/XapiAuthSMSSelectUser";
export declare class XapiAuthSMS extends APIAbstract {
shop_name: string;
requestOTP: typeof XapiAuthSMSRequestOtp;
verifyOTP: typeof XapiAuthSMSVerifyOtp;
registerUser: typeof XapiAuthSMSRegisterUser;
selectUser: typeof XapiAuthSMSSelectUser;
constructor(shop_name: string);
}
export declare namespace XapiAuthSMSTypes {
}