@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.
11 lines (10 loc) • 547 B
TypeScript
import { APIAbstract } from "@selldone/core-js/server/APIAbstract";
import XapiAuthEmailRequestOtp from "@selldone/sdk-storefront/auth/email/request-otp/XapiAuthEmailRequestOtp";
import XapiAuthEmailVerifyOtp from "@selldone/sdk-storefront/auth/email/verify-otp/XapiAuthEmailVerifyOtp";
export declare class XapiAuthEmail extends APIAbstract {
shop_name: string;
requestOtp: typeof XapiAuthEmailRequestOtp;
verifyOTP: typeof XapiAuthEmailVerifyOtp;
constructor(shop_name: string);
}
export declare namespace XapiAuthEmailTypes { }