@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.
17 lines (16 loc) • 735 B
TypeScript
import { Shop } from "../models/shop/shop.model";
import { Product } from "../models/shop/product/product.model";
export declare class URLS {
selldone_url: string;
selldone_iframe_url: string;
constructor();
MainServiceUrl(): string;
StripeLandingLoginPage(): string;
AdminShopsURL(): string;
AdminShopURL(shop_id: string | number): string;
UserSettingURL(): string;
ARViewURL(shop_name: string, product_id: string | number, variant_id: string | number, folder_name: string): string;
CommunityPostUrl(base_url: string, post_id: string | number): string;
CommunityPostEmbedUrl(base_url: string, post_id: string | number): string;
ProductIframeUrl(shop: Shop, product: Product): string;
}